mirror of
https://github.com/iflytek/skillhub.git
synced 2026-08-27 11:14:59 +00:00
* fix: increase nginx upload limit and filter Chrome DevTools logs - Add client_max_body_size 100M to nginx config to allow large skill package uploads - Silently handle Chrome DevTools .well-known requests to reduce log noise Fixes #193 * remove
66 lines
1.7 KiB
Text
66 lines
1.7 KiB
Text
server {
|
|
listen 80;
|
|
server_name _;
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
|
|
client_max_body_size 100M;
|
|
|
|
gzip on;
|
|
gzip_types text/plain text/css application/json application/javascript text/xml;
|
|
gzip_min_length 1000;
|
|
|
|
location / {
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
|
|
location /api/ {
|
|
proxy_pass ${SKILLHUB_API_UPSTREAM};
|
|
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 /oauth2/ {
|
|
proxy_pass ${SKILLHUB_API_UPSTREAM};
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
|
}
|
|
|
|
location /login/oauth2/ {
|
|
proxy_pass ${SKILLHUB_API_UPSTREAM};
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
|
}
|
|
|
|
location /.well-known/ {
|
|
proxy_pass ${SKILLHUB_API_UPSTREAM};
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
|
}
|
|
|
|
location /assets/ {
|
|
expires 1y;
|
|
add_header Cache-Control "public, immutable";
|
|
}
|
|
|
|
location = /registry/skill.md {
|
|
default_type text/plain;
|
|
add_header Content-Disposition "inline";
|
|
add_header X-Content-Type-Options "nosniff";
|
|
try_files $uri =404;
|
|
}
|
|
|
|
location = /runtime-config.js {
|
|
add_header Cache-Control "no-store";
|
|
try_files $uri =404;
|
|
}
|
|
|
|
location /nginx-health {
|
|
return 200 'ok';
|
|
add_header Content-Type text/plain;
|
|
}
|
|
}
|