/nginx-conf

Primary LanguageMakefile

Start up

cp env-example .env
# change value of `APP_PROXY_URL`

make up

Using template

https://hub.docker.com/_/nginx

Proxy configuration

location /some/path/ {
    proxy_set_header Host $host;
    proxy_set_header X-Real-IP $remote_addr;

    proxy_pass http://localhost:8000;
}

Websocket support

location /some/path/ {
    proxy_set_header Host $host;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_http_version 1.1;
    proxy_set_header Upgrade $http_upgrade;
    proxy_set_header Connection "Upgrade";

    proxy_pass http://localhost:8000;
}