# 本地调试模拟域名
server{
# gzip用来压缩前端文件体积
gzip on;
gzip_min_length 1024;
gzip_buffers 4 16k;
gzip_comp_level 9;
gzip_types text/plain application/x-javascript text/css application/xml text/javascript application/x-httpd-php image/jpeg image/gif image/png application/javascript;
gzip_vary on;
# 上传文件大小
client_max_body_size 5m;
listen 80;
# 输入您的域名 t.fashop.cn 只为演示代码,如果您没有域名可以在本地的host里进行模拟,加一行 127.0.0.1 t.fashop.cn,这样就拦截了这个域名跳到本地项目,请尽可能的模拟线上环境
server_name t.fashop.cn;
fastcgi_connect_timeout 300;
fastcgi_send_timeout 300;
fastcgi_read_timeout 300;
# 映射到swoole端口
location / {
proxy_pass http://127.0.0.1:9510;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgra
nginx配置站点(swoole)
最新推荐文章于 2024-09-10 11:57:46 发布
本文详细介绍了如何在宝塔面板环境下,配置Nginx以支持Swoole扩展的PHP应用,包括Nginx配置文件的修改和站点设置步骤。
摘要由CSDN通过智能技术生成