This repository has been archived on 2023-08-13. You can view files and clone it, but cannot push or open issues or pull requests.
nas-server/nginx-blocks/filebrowser

13 lines
303 B
Plaintext
Raw Permalink Normal View History

2022-09-16 15:00:38 +02:00
server {
listen 443 ssl;
server_name PH_SRVNAME;
2022-09-16 15:00:38 +02:00
ssl_certificate PH_CRT;
ssl_certificate_key PH_KEY;
2022-09-16 15:00:38 +02:00
location / {
proxy_pass http://127.0.0.1:8080;
2022-09-16 15:00:38 +02:00
add_header Strict-Transport-Security "max-age=31536000; includeSubDomains";
}
}