Init commit

This commit is contained in:
root
2025-10-10 16:24:16 +00:00
parent 8ad23b1307
commit 1bdb0e552c
8 changed files with 93 additions and 127 deletions

View File

@@ -1,13 +1,17 @@
server {
listen 443 ssl;
include ssl.conf;
#changed 29.11.22, pet
client_max_body_size 50M;
# ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
server_name git.fet.at;
set $proxy_host zyklon;
set $proxy_port 3000;
location / {
include proxy.conf;
# add_header Content-Security-Policy "default-src 'none'; img-src 'self'; script-src 'self' 'unsafe-inline'; style-src 'self' 'unsafe-inline'; font-src 'self' 'unsafe-inline'; base-uri 'self'; form-action 'self'; connect-src 'self'; frame-ancestors 'none'";
more_set_headers "Content-Security-Policy: default-src 'none'; img-src 'self'; script-src 'self' 'unsafe-inline'; style-src 'self' 'unsafe-inline'; font-src 'self' 'unsafe-inline'; base-uri 'self'; form-action 'self'; connect-src 'self'; frame-ancestors 'none'";
proxy_pass http://zyklon:3000;
}
}