30 lines
1.3 KiB
Nginx Configuration File
30 lines
1.3 KiB
Nginx Configuration File
server {
|
|
listen 443 ssl http2;
|
|
listen 8094; # Tor I2P
|
|
listen [300:a98d:d6d0:8a08::c]:80; # Yggdrasil
|
|
|
|
server_name upload.arav.su upload.arav.i2p 4usftbmjpfexkr2x5xbp5ukmygpmg4fgrnx2wbifsexqctooz5hmviyd.onion;
|
|
|
|
access_log /var/log/nginx/dwelling/upload.log main if=$nolog;
|
|
|
|
ssl_certificate /etc/letsencrypt/live/arav.su/fullchain.pem;
|
|
ssl_certificate_key /etc/letsencrypt/live/arav.su/privkey.pem;
|
|
|
|
|
|
add_header Content-Security-Policy "default-src 'self'; script-src 'none'; style-src 'self' 'unsafe-inline'; img-src 'self'; media-src 'self'; object-src 'none'; frame-src 'none'; frame-ancestors 'none'; font-src 'self'; form-action 'self'";
|
|
add_header X-Frame-Options "DENY";
|
|
add_header X-Content-Type-Options "nosniff";
|
|
add_header X-XSS-Protection "1; mode=block";
|
|
add_header Strict-Transport-Security "max-age=31536000; includeSubDomains; preload";
|
|
add_header Onion-Location "http://4usftbmjpfexkr2x5xbp5ukmygpmg4fgrnx2wbifsexqctooz5hmviyd.onion$request_uri";
|
|
|
|
|
|
location / {
|
|
proxy_pass http://unix:/var/run/dwelling-upload/sock;
|
|
proxy_buffering off;
|
|
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
}
|
|
}
|