113 lines
2.7 KiB
Nginx Configuration File
113 lines
2.7 KiB
Nginx Configuration File
server {
|
|
listen 80;
|
|
server_name _;
|
|
|
|
location / {
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
|
|
location /api/ {
|
|
proxy_pass http://app:8000/api/;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
}
|
|
|
|
location /ws {
|
|
proxy_pass http://app:8000/ws;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection "upgrade";
|
|
proxy_read_timeout 86400;
|
|
}
|
|
|
|
location /hls/ {
|
|
proxy_pass http://localhost:8888/;
|
|
proxy_http_version 1.1;
|
|
}
|
|
|
|
location /whep/ {
|
|
proxy_pass http://localhost:8889/;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection "upgrade";
|
|
}
|
|
|
|
location /whip/ {
|
|
proxy_pass http://localhost:8889/;
|
|
proxy_http_version 1.1;
|
|
}
|
|
|
|
location /media/ {
|
|
proxy_pass http://app:8000/media/;
|
|
}
|
|
|
|
location ~* \.(jpg|jpeg|png|gif|ico|svg|webp)$ {
|
|
expires 1h;
|
|
add_header Cache-Control "public, immutable";
|
|
}
|
|
}
|
|
|
|
# HTTPS server for phone camera access
|
|
server {
|
|
listen 443 ssl;
|
|
server_name _;
|
|
|
|
ssl_certificate /etc/nginx/ssl/ssl.crt;
|
|
ssl_certificate_key /etc/nginx/ssl/ssl.key;
|
|
ssl_protocols TLSv1.2 TLSv1.3;
|
|
ssl_ciphers HIGH:!aNULL:!MD5;
|
|
|
|
location / {
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
|
|
location /api/ {
|
|
proxy_pass http://app:8000/api/;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_set_header X-Forwarded-Proto https;
|
|
}
|
|
|
|
location /ws {
|
|
proxy_pass http://app:8000/ws;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection "upgrade";
|
|
proxy_read_timeout 86400;
|
|
}
|
|
|
|
location /hls/ {
|
|
proxy_pass http://localhost:8888/;
|
|
proxy_http_version 1.1;
|
|
}
|
|
|
|
location /whep/ {
|
|
proxy_pass http://localhost:8889/;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection "upgrade";
|
|
}
|
|
|
|
location /whip/ {
|
|
proxy_pass http://localhost:8889/;
|
|
proxy_http_version 1.1;
|
|
}
|
|
|
|
location /media/ {
|
|
proxy_pass http://app:8000/media/;
|
|
}
|
|
|
|
location ~* \.(jpg|jpeg|png|gif|ico|svg|webp)$ {
|
|
expires 1h;
|
|
add_header Cache-Control "public, immutable";
|
|
}
|
|
}
|