博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
nginx 配置tp3.2
阅读量:5319 次
发布时间:2019-06-14

本文共 1645 字,大约阅读时间需要 5 分钟。

server {    listen       80;    server_name  域名;    #charset koi8-r;    #access_log  /var/log/nginx/host.access.log  main;    location / {     #   root   /usr/share/nginx/html;        root   /var/wwwroot/bank;        index  index.html index.htm index.php;        if (!-e  $request_filename) {                    rewrite ^/(.*)$ /index.php?s=$1 last;                }           autoindex  on;    }        #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;    }    # 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           /var/wwwroot/bank;     #   fastcgi_pass   127.0.0.1:9000;      #  fastcgi_index  index.php;       # fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;        #include        fastcgi_params;  #  }   location ~ \.php$ {            root           /var/wwwroot/bank;            fastcgi_pass   127.0.0.1:9000;            fastcgi_index  index.php;            #fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;          fastcgi_param  SCRIPT_FILENAME  /var/wwwroot/bank/$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;    #}}

  

转载于:https://www.cnblogs.com/ampl/p/9697909.html

你可能感兴趣的文章
LeetCode 476. Number Complement
查看>>
ffmpeg安装
查看>>
文件上传和下载(可批量上传)——基础(一)
查看>>
《剑指offer》变态跳台阶
查看>>
Android环境搭建和编写helloworld
查看>>
《DSP using MATLAB》Problem 2.4
查看>>
ubuntu12.04通过ppa安装JDK7环境
查看>>
相关技术扩展地址
查看>>
jQuery.Callbacks源码解读
查看>>
[LeetCode] 68. Text Justification 文本对齐
查看>>
[LeetCode] 697. Degree of an Array 数组的度
查看>>
666 专题四 并查集
查看>>
模拟3
查看>>
小众公众号的简单运营
查看>>
Sql Server 附加没有日志文件的数据库(.mdf)文件方法
查看>>
系统调用方式文件编程-open
查看>>
python实战项目之爬虫(一)
查看>>
spring boot项目分享
查看>>
开放平台那些事
查看>>
CLion之C++框架篇-优化框架,引入boost(三)
查看>>