File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -183,19 +183,19 @@ server {
183183 location / {
184184 # Use whatever network alias you set in the docker-compose file
185185 proxy_pass http://secured-signal-api:8880;
186- proxy_set_header Host \ ;
187- proxy_set_header X-Real-IP \ ;
188- proxy_set_header X-Forwarded-For \ ;
189- proxy_set_header X-Forwarded-Host \ ;
190- proxy_set_header X-Fowarded-Proto \ ;
186+ proxy_set_header Host ;
187+ proxy_set_header X-Real-IP ;
188+ proxy_set_header X-Forwarded-For ;
189+ proxy_set_header X-Forwarded-Host ;
190+ proxy_set_header X-Fowarded-Proto ;
191191 }
192192}
193193
194194# Redirect HTTP to HTTPs
195195server {
196196 listen 80;
197197 server_name localhost;
198- return 301 https://\ ;
198+ return 301 https://;
199199}
200200```
201201
You can’t perform that action at this time.
0 commit comments