You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Hydro/examples/reverse_proxy/nginx.conf

19 lines
469 B
Nginx Configuration File

server {
listen 8080;
server_name localhost;
root /tmp/hydro/public;
location / {
try_files $uri @proxy_to_app;
}
location @proxy_to_app {
proxy_pass http://localhost:8888;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header X-Forwarded-Proto $scheme;
}
}