mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-23 13:03:50 +00:00
49 lines
1.3 KiB
Nginx Configuration File
49 lines
1.3 KiB
Nginx Configuration File
user nginx;
|
|
worker_processes auto;
|
|
worker_rlimit_nofile 51200;
|
|
|
|
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
http {
|
|
access_log off;
|
|
server_names_hash_bucket_size 512;
|
|
client_header_buffer_size 32k;
|
|
large_client_header_buffers 4 32k;
|
|
client_max_body_size 50M;
|
|
|
|
gzip on;
|
|
gzip_min_length 1k;
|
|
gzip_buffers 4 8k;
|
|
gzip_http_version 1.1;
|
|
gzip_comp_level 6;
|
|
gzip_vary on;
|
|
gzip_types text/plain application/x-javascript text/css application/javascript application/json application/xml;
|
|
gzip_disable "MSIE [1-6]\.";
|
|
|
|
open_file_cache max=1000 inactive=1d;
|
|
open_file_cache_valid 30s;
|
|
open_file_cache_min_uses 8;
|
|
open_file_cache_errors off;
|
|
|
|
server {
|
|
listen 443 ssl;
|
|
server_name docgpt.ahapocket.cn;
|
|
ssl_certificate /ssl/docgpt.pem;
|
|
ssl_certificate_key /ssl/docgpt.key;
|
|
ssl_session_timeout 5m;
|
|
|
|
location / {
|
|
proxy_pass http://localhost:3000;
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
}
|
|
}
|
|
server {
|
|
listen 80;
|
|
server_name docgpt.ahapocket.cn;
|
|
rewrite ^(.*) https://$server_name$1 permanent;
|
|
}
|
|
} |