Skip to content
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

jqplay with nginx proxy_pass #137

Open
fredericpetit-gh opened this issue Mar 14, 2023 · 0 comments
Open

jqplay with nginx proxy_pass #137

fredericpetit-gh opened this issue Mar 14, 2023 · 0 comments

Comments

@fredericpetit-gh
Copy link

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 ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant