mirror of
https://github.com/coaidev/coai.git
synced 2025-05-19 04:50:14 +09:00
39 lines
1.3 KiB
Nginx Configuration File
39 lines
1.3 KiB
Nginx Configuration File
server
|
|
{
|
|
# this is a sample configuration for nginx
|
|
listen 80;
|
|
|
|
location ~ ^/(\.user.ini|\.htaccess|\.git|\.svn|\.project|LICENSE|README.md|package.json|package-lock.json|\.env) {
|
|
return 404;
|
|
}
|
|
|
|
if ( $uri ~ "^/\.well-known/.*\.(php|jsp|py|js|css|lua|ts|go|zip|tar\.gz|rar|7z|sql|bak)$" ) {
|
|
return 403;
|
|
}
|
|
|
|
location ~ /purge(/.*) {
|
|
proxy_cache_purge cache_one 127.0.0.1$request_uri$is_args$args;
|
|
}
|
|
|
|
location / {
|
|
# if you are using compile deployment mode, please use the http://localhost:8094 instead
|
|
proxy_pass http://127.0.0.1:8000;
|
|
proxy_set_header Host 127.0.0.1:$server_port;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_set_header REMOTE-HOST $remote_addr;
|
|
add_header X-Cache $upstream_cache_status;
|
|
proxy_set_header X-Host $host:$server_port;
|
|
proxy_set_header X-Scheme $scheme;
|
|
proxy_connect_timeout 30s;
|
|
proxy_read_timeout 86400s;
|
|
proxy_send_timeout 30s;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection "upgrade";
|
|
}
|
|
|
|
access_log /www/wwwlogs/chatnio.log;
|
|
error_log /www/wwwlogs/chatnio.error.log;
|
|
}
|