We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0b35d0 commit c4b2051Copy full SHA for c4b2051
1 file changed
nginx.conf
@@ -6,6 +6,12 @@ server {
6
root /usr/share/nginx/html;
7
index index.html;
8
9
+ # TLS is terminated by an upstream proxy; this server only sees plain HTTP on
10
+ # 8080. Keep redirects relative so the browser resolves them against the
11
+ # original request origin (https://host) instead of nginx emitting an
12
+ # absolute Location with the internal scheme and port (http://host:8080).
13
+ absolute_redirect off;
14
+
15
# Compression
16
gzip on;
17
gzip_vary on;
0 commit comments