2020-10-22 06:17:02 +00:00
|
|
|
server {
|
|
|
|
server_name next.ionathan.ch;
|
|
|
|
client_max_body_size 512M;
|
2020-10-25 19:21:08 +00:00
|
|
|
add_header Strict-Transport-Security "max-age=15552000; includeSubDomains" always;
|
2020-10-22 06:17:02 +00:00
|
|
|
|
|
|
|
location / {
|
2021-03-03 05:14:21 +00:00
|
|
|
proxy_pass http://localhost:8000;
|
2020-10-22 06:17:02 +00:00
|
|
|
proxy_set_header Host $host;
|
|
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
|
|
}
|
|
|
|
location = /.well-known/carddav {
|
2020-10-25 19:21:08 +00:00
|
|
|
return 301 $scheme://$host/remote.php/dav;
|
2020-10-22 06:17:02 +00:00
|
|
|
}
|
|
|
|
location = /.well-known/caldav {
|
2020-10-25 19:21:08 +00:00
|
|
|
return 301 $scheme://$host/remote.php/dav;
|
2020-10-22 06:17:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
listen 443 ssl; # managed by Certbot
|
2022-11-24 14:03:05 +00:00
|
|
|
listen [::]:443 ssl;
|
2021-10-23 05:04:25 +00:00
|
|
|
ssl_certificate /etc/letsencrypt/live/next.ionathan.ch/fullchain.pem; # managed by Certbot
|
|
|
|
ssl_certificate_key /etc/letsencrypt/live/next.ionathan.ch/privkey.pem; # managed by Certbot
|
2020-10-22 06:17:02 +00:00
|
|
|
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
|
|
|
|
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
|
|
|
|
}
|
|
|
|
|
|
|
|
server {
|
|
|
|
if ($host = next.ionathan.ch) {
|
|
|
|
return 301 https://$host$request_uri;
|
|
|
|
} # managed by Certbot
|
|
|
|
|
|
|
|
server_name next.ionathan.ch;
|
2020-12-29 08:11:34 +00:00
|
|
|
listen 80;
|
2022-11-24 14:03:05 +00:00
|
|
|
listen [::]:80;
|
2020-10-22 06:17:02 +00:00
|
|
|
return 404; # managed by Certbot
|
2021-10-23 05:17:11 +00:00
|
|
|
}
|