X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=buster%2Fetc_files%2Fweb%2Fetc%2Fnginx%2Fnginx.conf;h=1e9c0c2ee5f023c4629e2234f6b440630d3a56a9;hb=a77fc2bde4db1f695035846947ba6205c9807be9;hp=83092d651d8b8749482ab6cbab96cf4fb371ea15;hpb=0504405d378ed9f92ab63e2d339b52273ec8530d;p=config diff --git a/buster/etc_files/web/etc/nginx/nginx.conf b/buster/etc_files/web/etc/nginx/nginx.conf index 83092d6..1e9c0c2 100644 --- a/buster/etc_files/web/etc/nginx/nginx.conf +++ b/buster/etc_files/web/etc/nginx/nginx.conf @@ -30,20 +30,9 @@ http { include /etc/nginx/conf.d/*.conf; include /etc/nginx/sites-enabled/*; - # If we wanted a simple file server … - ## HTTP server: only enforce HTTPS - #server { - # listen 80; - # return 301 https://$host$request_uri; - #} - # - ## HTTPS server - #server { - # listen 443 ssl; - # server_name REPLACE_fqdn_ECALPER; - # ssl_certificate /etc/letsencrypt/live/REPLACE_fqdn_ECALPER/fullchain.pem; - # ssl_certificate_key /etc/letsencrypt/live/REPLACE_fqdn_ECALPER/privkey.pem; - # root /var/www/html/; - # index index.html index.htm index.nginx-debian.html; - #} + # Redirect all HTTP requests to HTTPS. + server { + listen 80; + return 301 https://$host$request_uri; + } }