💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
default.conf代码:【其他文件和目录均是docker-compose自动生成】 ``` server { listen 80; server_name localhost; #access_log /var/log/nginx/host.access.log main; location / { root /wwwroot/default; 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 /wwwroot/default; # 后台根目录 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; # 加载其他配置文件 } # proxy the PHP scripts to Apache listening on 127.0.0.1:80 # #location ~ \.php$ { # proxy_pass http://127.0.0.1; #} # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 # #location ~ \.php$ { # root html; # fastcgi_pass 127.0.0.1:9000; # fastcgi_index index.php; # fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name; # include fastcgi_params; #} # deny access to .htaccess files, if Apache's document root # concurs with nginx's one # #location ~ /\.ht { # deny all; #} } ```