ThinkPHP 在阿里云上的nginx.config配置实例详解


Posted in PHP onOctober 11, 2017

具体代码如下所示:

# For more information on configuration, see:
#  * Official English Documentation: http://nginx.org/en/docs/
#  * Official Russian Documentation: http://nginx.org/ru/docs/
user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /run/nginx.pid;
events {
  worker_connections 1024;
}
http {
  log_format main '$remote_addr - $remote_user [$time_local] "$request" '
           '$status $body_bytes_sent "$http_referer" '
           '"$http_user_agent" "$http_x_forwarded_for"';
  access_log /var/log/nginx/access.log main;
  sendfile      on;
  tcp_nopush     on;
  tcp_nodelay     on;
  keepalive_timeout  65;
  types_hash_max_size 2048;
  include       /etc/nginx/mime.types;
  default_type    application/octet-stream;
  # Load modular configuration files from the /etc/nginx/conf.d directory.
  # See http://nginx.org/en/docs/ngx_core_module.html#include
  # for more information.
  include /etc/nginx/conf.d/*.conf;
  server {
    listen    80 default_server;
    listen    [::]:80 default_server;
    server_name _;
    root     /usr/share/nginx/html;
    # Load configuration files for the default server block.
    include /etc/nginx/default.d/*.conf;
    location / {
       #try_files $uri $uri/ /index.php;
       root  /usr/share/nginx/html;
       index index.php index.html index.htm;
       if (!-e $request_filename) {  rewrite ^(.*)$ /index.php?s=$1 last;  break;  }
    }      
    # redirect server error pages to the static page /40x.html
    #
    error_page 404       /404.html;     
    location = /40x.html {
    }
    # redirect server error pages to the static page /50x.html
    #
    error_page  500 502 503 504 /50x.html; 
    location = /50x.html {
    }
    location ~ \.php$ {
    root      /usr/share/nginx/html;
    fastcgi_pass  127.0.0.1:9000;
    fastcgi_index index.php;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    include    fastcgi_params;
    }
    location ~ /\.ht {
    deny all;
    }
  }
}

总结

以上所述是小编给大家介绍的ThinkPHP 在阿里云上的nginx.config配置实例详解,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对三水点靠木网站的支持!

PHP 相关文章推荐
dede3.1分页文字采集过滤规则详说(图文教程)续四
Apr 03 PHP
PHP6 先修班 JSON实例代码
Aug 23 PHP
PHP以指定字段为索引返回数据库所取的数据数组
Jun 30 PHP
php中用socket模拟http中post或者get提交数据的示例代码
Aug 08 PHP
php实现12306火车票余票查询和价格查询(12306火车票查询)
Jan 14 PHP
wamp安装后自定义配置的方法
Aug 23 PHP
Thinkphp模板标签if和eq的区别和比较实例分析
Jul 01 PHP
关于PHP开发的9条建议
Jul 27 PHP
非常实用的php验证码类
May 15 PHP
PHP-FPM运行状态的实时查看及监控详解
Nov 18 PHP
kindeditor 加入七牛云上传的实例讲解
Nov 12 PHP
PHP如何根据文件头检测文件类型实例代码
Oct 14 PHP
Laravel中的Blade模板引擎示例详解
Oct 10 #PHP
PHP小白必须要知道的php基础知识(超实用)
Oct 10 #PHP
PHP实现数据库统计时间戳按天分组输出数据的方法
Oct 10 #PHP
PHP使用Redis实现防止大并发下二次写入的方法
Oct 09 #PHP
PHP字典树(Trie树)定义与实现方法示例
Oct 09 #PHP
PHP完全二叉树定义与实现方法示例
Oct 09 #PHP
PHP实现的折半查询算法示例
Oct 09 #PHP
You might like
PHP与javascript的两种交互方式
2006/10/09 PHP
php 取得瑞年与平年的天数的代码
2009/08/10 PHP
PHP array_flip() 删除重复数组元素专用函数
2010/05/16 PHP
Javascript load Page,load css,load js实现代码
2010/03/31 Javascript
使用JavaScript 实现各种跨域的方法
2013/05/08 Javascript
JavaScript中几个重要的属性(this、constructor、prototype)介绍
2013/05/19 Javascript
JQ获取动态加载的图片大小的正确方法分享
2013/11/08 Javascript
javascript判断是否按回车键并解决浏览器之间的差异
2014/05/13 Javascript
封装好的js判断操作系统与浏览器代码分享
2015/01/09 Javascript
详解WordPress开发中get_current_screen()函数的使用
2016/01/11 Javascript
angularjs实现table增加tr的方法
2018/02/27 Javascript
Vue组件系列开发之模态框
2019/04/18 Javascript
了解在JavaScript中将值转换为字符串的5种方法
2019/06/06 Javascript
通过实例了解JS 连续赋值
2019/09/24 Javascript
微信小程序网络请求实现过程解析
2019/11/06 Javascript
解决vue组件中click事件失效的问题
2019/11/09 Javascript
antd多选下拉框一行展示的实现方式
2020/10/31 Javascript
获取django框架orm query执行的sql语句实现方法分析
2019/06/20 Python
深入了解Django中间件及其方法
2019/07/26 Python
python虚拟环境完美部署教程
2019/08/06 Python
Flask之pipenv虚拟环境的实现
2019/11/26 Python
Python装饰器原理与基本用法分析
2020/01/07 Python
Python实现自动装机功能案例分析
2020/10/22 Python
HTML5+CSS3绘制锯齿状的矩形
2016/03/01 HTML / CSS
Dillard’s百货官网:Dillards.com
2018/05/26 全球购物
init进程的作用
2012/04/12 面试题
英智兴达软件测试笔试题
2016/10/12 面试题
出国留学自荐信
2013/10/25 职场文书
手机被没收检讨书
2014/02/22 职场文书
2014年父亲节活动方案
2014/03/06 职场文书
村干部承诺书
2014/03/28 职场文书
学习之星事迹材料
2014/05/17 职场文书
美食节目策划方案
2014/05/31 职场文书
六年级小学生评语
2014/12/26 职场文书
会计出纳岗位职责
2015/03/31 职场文书
使用Canvas绘制一个游戏人物属性图
2022/03/25 Javascript