mirror of
https://github.com/mtan93/homeassistant-addons.git
synced 2026-03-08 05:21:51 +00:00
19 lines
523 B
Nginx Configuration File
19 lines
523 B
Nginx Configuration File
events {
|
|
}
|
|
|
|
http {
|
|
|
|
server {
|
|
listen 8099;
|
|
|
|
location / {
|
|
proxy_pass https://localhost:631;
|
|
proxy_hide_header X-Frame-Options;
|
|
proxy_hide_header Content-Security-Policy;
|
|
add_header Content-Security-Policy "sandbox allow-forms allow-modals allow-popups allow-popups-to-escape-sandbox allow-scripts";
|
|
sub_filter '"/' '"$http_x_ingress_path/';
|
|
sub_filter "'/" "'$http_x_ingress_path/";
|
|
sub_filter_once off;
|
|
}
|
|
}
|
|
} |