2020-06-18 00:02:28 +02:00
|
|
|
user nginx;
|
|
|
|
worker_processes auto;
|
|
|
|
|
|
|
|
error_log /dev/stdout warn;
|
|
|
|
pid /var/run/nginx.pid;
|
|
|
|
|
|
|
|
|
|
|
|
events {
|
|
|
|
worker_connections 1024;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
http {
|
|
|
|
include /etc/nginx/mime.types;
|
|
|
|
default_type application/octet-stream;
|
|
|
|
|
|
|
|
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
|
|
|
|
'$status $body_bytes_sent "$http_referer" '
|
|
|
|
'"$http_user_agent" "$http_x_forwarded_for"';
|
|
|
|
|
|
|
|
access_log /dev/stdout main;
|
|
|
|
|
|
|
|
sendfile on;
|
|
|
|
keepalive_timeout 65;
|
|
|
|
gzip off;
|
|
|
|
|
2020-06-21 15:21:00 +02:00
|
|
|
map $http_upgrade $connection_upgrade {
|
|
|
|
default upgrade;
|
|
|
|
'' close;
|
|
|
|
}
|
|
|
|
|
2020-06-18 00:02:28 +02:00
|
|
|
upstream bite {
|
|
|
|
# We point to the Docker 'service' instead of directly to the container
|
|
|
|
# Docker does then a DNS round-robin internally
|
|
|
|
server bite:8000;
|
|
|
|
}
|
|
|
|
|
2020-06-21 15:21:00 +02:00
|
|
|
upstream broker {
|
|
|
|
# We point to the Docker 'service' instead of directly to the container
|
|
|
|
# Docker does then a DNS round-robin internally
|
|
|
|
server broker:9001;
|
|
|
|
}
|
|
|
|
|
2020-06-18 00:02:28 +02:00
|
|
|
server {
|
|
|
|
listen 80 default_server;
|
|
|
|
listen [::]:80 default_server;
|
|
|
|
server_name _;
|
|
|
|
|
|
|
|
keepalive_requests 10;
|
|
|
|
keepalive_timeout 60 60;
|
|
|
|
|
|
|
|
location / {
|
|
|
|
proxy_pass http://bite;
|
|
|
|
proxy_set_header Host $http_host;
|
|
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
|
|
proxy_set_header X-Forwarded-Host $host:$server_port;
|
|
|
|
proxy_set_header X-Forwarded-Server $host;
|
|
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
|
|
|
|
|
|
proxy_read_timeout 300;
|
|
|
|
proxy_connect_timeout 300;
|
|
|
|
}
|
|
|
|
|
2020-06-21 15:21:00 +02:00
|
|
|
location /mqtt {
|
|
|
|
proxy_pass http://broker;
|
|
|
|
proxy_http_version 1.1;
|
|
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
|
|
proxy_set_header Connection $connection_upgrade;
|
|
|
|
}
|
|
|
|
|
2020-06-18 19:09:46 +02:00
|
|
|
location /static/ {
|
|
|
|
root /srv/appdata/bite;
|
|
|
|
}
|
|
|
|
|
2020-06-18 00:02:28 +02:00
|
|
|
error_page 500 502 503 504 /50x.html;
|
|
|
|
location = /50x.html {
|
|
|
|
root /usr/share/nginx/html;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|