Fix a couple of issues in the nginx template

For instance, `X-Forwarded-Proto` is needed to properly generate the
callback URL for 3rd-party auth through Ueberauth

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel 2020-10-09 17:06:17 +02:00
parent 75fc1f125a
commit bacf8fc3be
No known key found for this signature in database
GPG Key ID: A061B9DDE0CA0773
1 changed files with 3 additions and 6 deletions

View File

@ -62,10 +62,11 @@ server {
proxy_set_header Host $http_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-Proto $scheme;
location / {
try_files $uri @proxy;
proxy_pass http://localhost:4000;
}
# Let's Encrypt keeps its files here
@ -74,10 +75,6 @@ server {
default_type "text/plain";
}
location / {
proxy_pass http://localhost:4000;
}
location ~ ^/(js|css) {
root /home/mobilizon/live/priv/static;
etag off;
@ -94,7 +91,7 @@ server {
error_page 500 501 502 503 504 @error;
location @error {
root /home/tcit/dev/frama/mobilizon/priv/errors;
root /home/mobilizon/live/priv/errors;
try_files /error.html 502;
}