Updated nginx configs

This commit is contained in:
Vivek Santayana 2022-06-16 13:21:27 +01:00
parent d202e83189
commit e4e07c43b4
2 changed files with 6 additions and 39 deletions

View File

@ -1,33 +0,0 @@
server {
listen 80 default_server;
listen [::]:80 default_server;
listen 443 ssl http2 default_server;
listen [::]:443 ssl http2 default_server;
access_log /var/log/nginx/host.access.log main;
# SSL configuration
include /etc/nginx/ssl.conf;
# Add index.php to the list if you are using PHP
index index.html index.htm index.nginx-debian.html;
# Default catch all to 404
# Added from Serverfault support https://serverfault.com/questions/994141/nginx-redirecting-the-wrong-subdomains
server_name _;
server_name_in_redirect off;
location / {
return 404;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}

View File

@ -3,17 +3,17 @@ upstream reftest {
} }
server { server {
server_name domain_name;
listen 80; listen 80 default_server;
listen [::]:80; listen [::]:80 default_server;
# Redirect to ssl # Redirect to ssl
return 301 https://$host$request_uri; return 301 https://$host$request_uri;
} }
server { server {
server_name domain_name;
listen 443 ssl http2; listen 443 ssl http2 default_server;
listen [::]:443 ssl http2; listen [::]:443 ssl http2 default_server;
#SSL configuration #SSL configuration
include /etc/nginx/ssl.conf; include /etc/nginx/ssl.conf;