-
Notifications
You must be signed in to change notification settings - Fork 508
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Proper way to run behind Nginx Reverse Proxy #575
Comments
It looks like we can't provide help here. |
Hi Jarranz2, I have exactly the same issue with apache reverse proxy and freescout. Did you found a solution by yourself? |
No
… El 8 jun 2020, a las 17:51, Processeur ***@***.***> escribió:
Hi Jarranz2,
I have exactly the same issue with apache reverse proxy and freescout. Did you found a solution by yourself?
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub <#575 (comment)>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/AMIXRJXRHP4URTHBPPRE2PDRVUCJHANCNFSM4MGL6S3Q>.
|
Too bad the tool seems to be promising. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello,
I'm trying to run Freescout behind a nginx reverse proxy. I'm not using Docker.
In .env file I've the following details:
APP_URL: https://mydomain.com
APP_FORCE_HTTPS:true
In Nginx reverse proxy, I have the following configuration:
`server {
listen 80;
listen 443 ssl;
ssl_certificate /etc/letsencrypt/live/mydomain/fullchain.pem; # managed by Certbot
ssl_certificate_key /etc/letsencrypt/live/mydomain/privkey.pem; # managed by Certbot
}
}
`
Freescout is not displaying the website and images under ssl. Firefox can not establish a secure connection.
Any help?
Thank you very much and excuse my english, I'm not native speaker.
The text was updated successfully, but these errors were encountered: