1. 普通php 项目 location ~ \.php$ { root /usr/share/nginx/html; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $docum ...
分类:
Web程序 时间:
2017-06-10 21:23:25
阅读次数:
214
1.根目录和索引文件 root指令能放置的位置是:http,server,location。 上面的意思是:我所有的location定义都是基于根目录/www/data的,也就是说"/"指的就是/www/data/,而"/images/"指的就是/www/data/images/。 我们可以为每个目 ...
分类:
其他好文 时间:
2017-04-20 15:19:51
阅读次数:
168
1. 环境: OS:Ubuntu 15.10 nginx:nginx/1.9.3 (Ubuntu) 两台虚拟机db1(IP:10.0.1.62)/db2(IP:10.0.1.63) 2. 配置两台机器的nginx.conf 3. 为db1添加/etc/nginx/conf.d/db1.conf 4. ...
分类:
其他好文 时间:
2017-03-30 18:47:02
阅读次数:
1666
前段时间的折腾,颇费一番周折,过程中发现网上的许多资料比较老旧过时了,所以在这里也简单把过程重新整理一遍,争取一帖解决问题。 基于最新的Ubuntu 14.04(2014年9月)搭建nginx、php、mysql环境,以下全部命令行操作: 1,由于需要大量的权限操作,方便起见临时提升权限,使用roo ...
分类:
数据库 时间:
2017-03-27 00:48:50
阅读次数:
273
参考配置server{listen80;server_name10.10.76.231;roothtml;indexindex.htmlindex.php;#1/2.html不可用则跳转指定文件3.htmllocation/web{try_files/1.html/2.html/3.html;}#1/2.html不可用则跳转指定页面:www.baidu.comlocation/home{try_files/1.html/2.html@static;}locat..
分类:
其他好文 时间:
2017-03-10 19:17:58
阅读次数:
152
location / { try_files $uri @apache; } location @apache { internal; proxy_pass http://127.0.0.1:88; include proxy.conf; ... ...
分类:
其他好文 时间:
2017-01-29 14:42:35
阅读次数:
179
1. try_files 的参数前面所有的参数都是匹配,最后一个参数是重写, 然后执行internal redirect 2. 两种匹配 先进行prefix string匹配, 然后再进行regex匹配, regex匹配是按照regex 出现在configuration中的先后顺序执行的 3. tr ...
分类:
其他好文 时间:
2017-01-19 09:28:17
阅读次数:
144
laravel 下载后,如何运行起来呢,根据自己的应用,记录了几个关键点: 1、apache 配置: 打开http.conf文件,将mod_rewrite前面的#去掉(启用重写模块); 2、nginx配置: 打开nginx.conf文件,添加: location / { try_files $uri ...
分类:
Web程序 时间:
2017-01-06 15:18:31
阅读次数:
237
# -*- encoding:utf-8 -*-import osdef SearchFile(path,text): try: files=os.listdir(path) for f in files: fl= os.path.join(path,f) if os.path.isdir(fl): ...
分类:
其他好文 时间:
2016-12-14 18:56:24
阅读次数:
154
try_files指令 语法:try_files file ... uri 或 try_files file ... = code默认值:无作用域:server location 其作用是按顺序检查文件是否存在,返回第一个找到的文件或文件夹(结尾加斜线表示为文件夹),如果所有的文件或文件夹都找不到, ...
分类:
其他好文 时间:
2016-07-15 06:32:53
阅读次数:
126