💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
```conf worker_processes auto; worker_shutdown_timeout 30s; worker_rlimit_core 50M; working_directory /tmp/; worker_rlimit_nofile 10240; events { worker_connections 10240; worker_aio_requests 1024; } http { include mime.types; default_type application/octet-stream; charset utf-8; autoindex off; autoindex_exact_size on; autoindex_localtime on; include gzip.conf; sendfile on; server_tokens off; fastcgi_hide_header X-Powered-By; proxy_hide_header X-Powered-By; ssl_protocols TLSv1.3; add_header X-Frame-Options sameorigin always; include limit_req_http.conf; server { listen 80; server_name php8.1.nginx.com; root /server/default; access_log /server/logs/nginx/localhost.log; index index.php; allow 192.168.0.0/16; deny all; if ($request_method !~* GET|POST) { return 403; } include cache.conf; location / { include limit_req_server.conf; } location ~ \.php { fastcgi_pass unix:/server/run/php/phpfpm8.1-default.sock; include fastcgi.conf; } location ~ /\. { deny all; } } server { listen 80; server_name php8.0.nginx.com; root /server/default; access_log /server/logs/nginx/localhost.log; index index.php; allow 192.168.10.0/24; deny all; if ($request_method !~* GET|POST) { return 403; } include cache.conf; location / { include limit_req_server.conf; } location ~ \.php { fastcgi_pass unix:/server/run/php/phpfpm8.0-default.sock; include fastcgi.conf; } location ~ /\. { deny all; } } include /server/sites/*.conf; include /server/sites/*.nginx; } ```