aboutsummaryrefslogtreecommitdiffstats
path: root/devops/nginx/default.conf
blob: 541f5dbba055a591b16c820a4eebbdf06c5a8d8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
server {
# Listen on 80 and 443
listen 80;
listen 443 ssl;
# Self-signed certificate.
ssl_certificate /etc/ssl/certs/ssl-cert-snakeoil.pem;
ssl_certificate_key /etc/ssl/private/ssl-cert-snakeoil.key;

# Redirect all non-SSL traffic to SSL.
if ($ssl_protocol = "") {
rewrite ^ https://$host$request_uri? permanent;
}

# Split off traffic to chameleon, and make sure that websockets
# are managed correctly.
location / {
proxy_pass http://chameleon:8082;
proxy_http_version 1.1;
proxy_set_header Upgrade websocket;
proxy_set_header Connection upgrade;
}
}