You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

58 lines
1.4 KiB
Plaintext

### WWW.XPUB.NL
upstream call {
server unix:/data/www/xpub.nl/wsgi/call2025/sock/django.sock;
}
server {
server_name xpub.nl www.xpub.nl;
root /data/www/xpub.nl/www.xpub.nl;
index index.html index.htm;
# forbid serving any . files and directories (like .git)
location ~ /\.(?!well-known).* {
deny all;
return 404;
access_log off;
log_not_found off;
}
location / {
try_files $uri $uri/ =404;
autoindex on;
}
listen 443 ssl; # managed by Certbot
ssl_certificate /etc/letsencrypt/live/xpub.nl/fullchain.pem; # managed by Certbot
ssl_certificate_key /etc/letsencrypt/live/xpub.nl/privkey.pem; # managed by Certbot
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
location /2025/call/ {
uwsgi_pass call;
include uwsgi_params;
}
location /2025/call/static/ {
alias /data/www/xpub.nl/www.xpub.nl/2025/call/static/;
}
location /2025/call/media/ {
alias /data/www/xpub.nl/www.xpub.nl/2025/call/media/;
}
}
server {
if ($host = www.xpub.nl) {
return 301 https://$host$request_uri;
} # managed by Certbot
if ($host = xpub.nl) {
return 301 https://$host$request_uri;
} # managed by Certbot
listen 80;
server_name xpub.nl www.xpub.nl;
return 404; # managed by Certbot
}