Remove the configuration alignment

This commit is contained in:
Alex Tselegidis 2023-07-29 11:16:24 +02:00
parent a29bd106d4
commit d2c707adac

View File

@ -28,12 +28,12 @@ server {
# Reverse proxy the CRA app.
location / {
proxy_pass http://php-fpm:3000;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Host $server_name;
proxy_pass http://php-fpm:3000;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Host $server_name;
}
# Reverse proxy the CRA web sockets.