💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
``` server { listen 80; server_name localhost; #access_log /var/log/nginx/host.access.log main; location / { root /workspace/html/config_dev/html; index index.php index.html index.htm; } #error_page 404 /404.html; # redirect server error pages to the static page /50x.html # error_page 500 502 503 504 /50x.html; location = /50x.html { root /usr/share/nginx/html; } location ~ \.php$ { root /workspace/html/config_dev/html; # 后台根目录 fastcgi_pass lnmp_php:9000; # PHP解释器:将请求转发给本机9000端口 fastcgi_index index.php; # 默认的请求文件名:PHP的默认文件名称[index.php] fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; # 脚本文件请求的路径 include fastcgi_params; # 加载其他配置文件 } } ```