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
via @tomkraljevic
Add a sample nginx config, commented in detail. E.g.
map $http_upgrade $connection_upgrade { default upgrade; '' close; } server { listen 443; ssl_certificate /etc/nginx/server.crt; ssl_certificate_key /etc/nginx/server.key; ssl on; ssl_session_cache builtin:1000 shared:SSL:10m; client_max_body_size 0; location / { proxy_set_header Host $host; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection upgrade; proxy_set_header Accept-Encoding gzip; proxy_read_timeout 20d; proxy_pass http://localhost:10101/; } }
The text was updated successfully, but these errors were encountered:
Resolved in 12b10ee
Sorry, something went wrong.
docs: Add Nginx conf for running wave apps behind reverse proxy. Closes
12b10ee
#1941
No branches or pull requests
via @tomkraljevic
Add a sample nginx config, commented in detail. E.g.
The text was updated successfully, but these errors were encountered: