66 lines
1.8 KiB
Plaintext
66 lines
1.8 KiB
Plaintext
server {
|
|
listen 5999;
|
|
server_name _;
|
|
|
|
root /usr/share/nginx/html/admin;
|
|
index index.html;
|
|
|
|
gzip on;
|
|
gzip_min_length 1024;
|
|
gzip_types text/plain text/css application/json application/javascript text/xml application/xml image/svg+xml;
|
|
|
|
location = /index.html {
|
|
add_header Cache-Control "no-store";
|
|
try_files $uri =404;
|
|
}
|
|
|
|
# KT K8s Dashboard reverse proxy begin
|
|
location = /kt-k8s-dashboard {
|
|
return 301 /kt-k8s-dashboard/;
|
|
}
|
|
|
|
location ^~ /kt-k8s-dashboard/ {
|
|
proxy_pass http://172.17.0.1:4466/;
|
|
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 $scheme;
|
|
proxy_set_header X-Forwarded-Prefix /kt-k8s-dashboard;
|
|
proxy_read_timeout 300s;
|
|
proxy_send_timeout 300s;
|
|
proxy_buffering off;
|
|
}
|
|
# KT K8s Dashboard reverse proxy end
|
|
|
|
location ^~ /api/ {
|
|
proxy_pass http://192.168.31.224:48085/;
|
|
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 $scheme;
|
|
}
|
|
|
|
location ^~ /napcat-webui/ {
|
|
proxy_pass http://192.168.31.224:48086/napcat-webui/;
|
|
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;
|
|
}
|
|
|
|
location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg|woff|woff2|ttf|eot)$ {
|
|
expires 1y;
|
|
add_header Cache-Control "public, immutable";
|
|
try_files $uri =404;
|
|
}
|
|
|
|
location / {
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
}
|