Files
my-game/client/nginx.conf

57 lines
1.6 KiB
Nginx Configuration File

server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
gzip on;
gzip_vary on;
gzip_min_length 1024;
gzip_types text/plain text/css text/xml text/javascript application/javascript application/xml+rss application/json;
# Проксирование Socket.io к серверу
location /socket.io/ {
proxy_pass http://svoya-igra-server:3001;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
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 $scheme;
}
# Проксирование API
location /api/ {
proxy_pass http://svoya-igra-server:3001;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
# Проксирование медиа (изображения, аудио, видео)
location /images/ {
proxy_pass http://svoya-igra-server:3001;
}
location /audio/ {
proxy_pass http://svoya-igra-server:3001;
}
location /video/ {
proxy_pass http://svoya-igra-server:3001;
}
# SPA
location / {
try_files $uri $uri/ /index.html;
}
location = /index.html {
add_header Cache-Control "no-cache, no-store, must-revalidate";
}
location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg|woff|woff2|ttf|eot)$ {
expires 1y;
add_header Cache-Control "public, immutable";
}
}