Skip to content

NGINX Proxy access to Windmill with path #5198

Closed Answered by jase64
jase64 asked this question in Questions
Discussion options

You must be logged in to vote

Finally, I'll quickly close the subject.

I managed to get it running like expected in Nginx with the following script:

server {
        listen 80 default_server;
        listen [::]:80 default_server;

        server_name myserver.com www.myserver.com;
        server_name_in_redirect off;
        proxy_set_header Host $host:$server_port;

        location /windmill {
                proxy_set_header X-Real-IP $remote_addr;
                proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
                proxy_pass http://127.0.0.1:8080;
        }
}

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by jase64
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
1 participant