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
Hi everybody,
i tried to enable a nginx proxy_pass litke this :
server { listen 80; server_name jqplay.localhost.intra; location / { proxy_pass http://localhost:8090; 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; proxy_connect_timeout 30; proxy_send_timeout 30; } }
problem is there are incorrect assets/public path like http://localhost:8090/assets/public/js/app.min.1678800922491.js is accessible but not http://jqplay.localhost.intra/assets/public/js/app.min.1678800922491.js
do i need some rewriting ?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi everybody,
i tried to enable a nginx proxy_pass litke this :
problem is there are incorrect assets/public path like http://localhost:8090/assets/public/js/app.min.1678800922491.js is accessible but not http://jqplay.localhost.intra/assets/public/js/app.min.1678800922491.js
do i need some rewriting ?
The text was updated successfully, but these errors were encountered: