Replies: 2 comments 3 replies
-
What do you mean it doesn‘t work? What error do you get? |
Beta Was this translation helpful? Give feedback.
2 replies
-
@dflahaut in case you never got an answer to this problem nano /etc/apache2/sites-enabled/firefly.conf Then add APP_URL and TRUSTED_PROXIES <VirtualHost *:80> <Directory /opt/firefly/public>
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I used the script Firefly III LXC to run this app on http://192.168.1.17. It works well. Now I want to access from internet with an address like firefly.xxx.xxx. I tried these lines in nginx.conf (https://docs.firefly-iii.org/references/faq/install/#i-am-using-nginx-and-want-to-expose-firefly-iii-under-budget) : it doesn't work.

I tried some others lines ... but I've still errors.
location /
proxy_pass http://192.168.1.17;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Port $server_port;
add_header Content-Security-Policy "upgrade-insecure-requests";
add_header Content-Security-Policy "base-uri 'self' http://192.168.1.17/; default-src 'self' https:;";
Do you have any idea ?
Beta Was this translation helpful? Give feedback.
All reactions