Add mod_openssl module to avoid warning

This commit is contained in:
John Berninger 2020-06-14 16:33:11 -04:00
parent ba8f3e6af0
commit d3658b9fe6
1 changed files with 6 additions and 5 deletions

View File

@ -29,6 +29,7 @@ $HTTP["url"] =~ "^/dump1090-fa/data/.*\.json$" {
# Uncomment this section to enable SSL traffic (HTTPS) - especially useful
# for .dev domains
## Listen on 8443 for SSL connections
#server.modules += ( "mod_openssl" )
#$HTTP["host"] == "piaware.example.com" {
# $SERVER["socket"] == ":8443" {
# ssl.engine = "enable"
@ -44,12 +45,12 @@ $HTTP["url"] =~ "^/dump1090-fa/data/.*\.json$" {
# "/" => "/usr/share/dump1090-fa/html/"
# )
# }
#}
#
# # Redirect HTTP to HTTPS
# $HTTP["scheme"] == "http" {
# $HTTP["host"] =~ ".*" {
# url.redirect = (".*" => "https://%0$0")
# }
## Redirect HTTP to HTTPS
#$HTTP["scheme"] == "http" {
# $HTTP["host"] =~ ".*" {
# url.redirect = (".*" => "https://%0$0")
# }
#}