We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
If both a static directory and a proxy container are specified in a domain, the static resources are not served.
We (incorrectly) currently generate
server { listen 80; server_name platform.xx.com www.platform.xx.com; location / { proxy_pass http://127.0.0.1:3142; 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-Proto $scheme; } listen 443 ssl; ssl_certificate /etc/letsencrypt/live/platf .... }
We are supposed to be using try_files instead: https://stackoverflow.com/a/15467555
try_files
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If both a static directory and a proxy container are specified in a domain, the static resources are not served.
We (incorrectly) currently generate
We are supposed to be using
try_files
instead: https://stackoverflow.com/a/15467555The text was updated successfully, but these errors were encountered: