Avoid confusion with proxy_pass

This commit is contained in:
Tommy 2024-10-13 02:59:28 -07:00 committed by GitHub
parent 3bbe3ea3a3
commit 95881525c4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -21,6 +21,6 @@ server {
add_header Content-Security-Policy "default-src 'none'; connect-src 'self'; frame-src *; img-src *; manifest-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; base-uri 'none'; block-all-mixed-content; form-action 'self'; frame-ancestors 'self'; upgrade-insecure-requests";
location / {
proxy_pass http://127.0.0.1:8080;
proxy_pass http://miniflux:8080;
}
}

View File

@ -22,6 +22,6 @@ server {
add_header Content-Security-Policy "default-src 'none'; connect-src 'self'; img-src 'self' data:; frame-src 'self'; manifest-src 'self'; object-src 'self'; script-src 'self' 'unsafe-eval' 'unsafe-inline'; style-src 'self' 'unsafe-inline'; base-uri 'none'; block-all-mixed-content; form-action 'none'; frame-ancestors 'self'; upgrade-insecure-requests";
location / {
proxy_pass http://127.0.0.1:3001;
proxy_pass http://uptime-kuma:3001;
}
}