Initial rough commit to save the code before cleanup
This commit is contained in:
16
nextcloud/files/nginx.conf.j2
Normal file
16
nextcloud/files/nginx.conf.j2
Normal file
@ -0,0 +1,16 @@
|
||||
server {
|
||||
|
||||
listen 80;
|
||||
server_name {{ http_host }};
|
||||
|
||||
location / {
|
||||
|
||||
proxy_set_header Host $host:$server_port;
|
||||
proxy_set_header X-Scheme $scheme;
|
||||
proxy_set_header X-Forwarded-For $remote_addr;
|
||||
add_header Strict-Transport-Security "max-age=15552000; includeSubDomains" always;
|
||||
proxy_pass http://localhost:9080;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user