1
0
Fork 0

Let NGiNX config for this service be in its repo.

This commit is contained in:
Alexander Andreev 2022-03-06 19:47:09 +04:00
parent 3accb619f7
commit 4db9031874
Signed by: Arav
GPG Key ID: 1327FE8A374CC86F
1 changed files with 26 additions and 0 deletions

26
configs/nginx.conf Normal file
View File

@ -0,0 +1,26 @@
server {
listen 443 ssl http2;
listen 8094; # Tor
listen 127.0.0.1:8114; # I2P
server_name upload.arav.top upload.arav.i2p;
access_log /var/log/nginx/dwelling/upload.log main if=$nolog;
ssl_certificate /etc/letsencrypt/live/arav.top/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/arav.top/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://.onion$request_uri";
location / {
proxy_pass http://unix:/tmp/dwelling-upload.sock;
proxy_set_header X-Real-IP $remote_addr;
proxy_buffering off;
}
}