1
0
portfolio/config/nginx/nginx.conf
2023-11-03 22:14:18 +01:00

84 lines
2.0 KiB
Nginx Configuration File

# matsubara.nl
server {
server_name matsubara.nl www.matsubara.nl;
listen 80;
listen [::]:80;
return 301 https://$host$request_uri;
}
server {
server_name matsubara.nl www.matsubara.nl;
server_tokens off;
listen 443 ssl http2;
listen [::]:443 ssl http2;
# These two directives define the paths to the TLS certificate and secret key.
# These will be provisioned using Certbot and mounted into the Nginx container in the next step.
ssl_certificate /etc/letsencrypt/live/matsubara.nl/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/matsubara.nl/privkey.pem;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
# to redirect all the requests to index.html,
# useful when you are using react-router
try_files $uri /index.html;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
location /.well-known/acme-challenge/ {
root /var/www/certbot;
}
}
# michelaben.nl
server {
server_name michelaben.nl www.michelaben.nl;
listen 80;
listen [::]:80;
return 301 https://$host$request_uri;
}
server {
server_name michelaben.nl www.michelaben.nl;
server_tokens off;
listen 443 ssl http2;
listen [::]:443 ssl http2;
# These two directives define the paths to the TLS certificate and secret key.
# These will be provisioned using Certbot and mounted into the Nginx container in the next step.
ssl_certificate /etc/letsencrypt/live/matsubara.nl/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/matsubara.nl/privkey.pem;
location / {
root /usr/share/nginx/html/michelaben; # Update the path to your specific directory
index index.html;
# Redirect all requests to index.html
try_files $uri /index.html;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
location /.well-known/acme-challenge/ {
root /var/www/certbot;
}
}