1.下载nginx包http://files.cnblogs.com/files/jyjin/nginx.zip2.解压后找到nginx.conf文件进行配置3.配置server选项: server_name:可任意指定,是你的代理host名 root:为本地项目根路径(index.html路径) ...
分类:
其他好文 时间:
2015-08-07 13:06:00
阅读次数:
178
转载自:http://www.tuicool.com/articles/NZVnm2f上周给一台 Nginx proxy 服务器增加一个虚拟主机名(server_name)后重启 nginx 报错,nginx -t 测试和查看 nginx 错误日志均发现需要增加 server_names_hash_...
分类:
其他好文 时间:
2015-08-06 20:23:52
阅读次数:
139
server{listen80;server_name~^(?<subdomain>.+)\.youwebname\.com$;indexindex.htmlindex.htmindex.php;root/wwwroot/$subdomain;error_page404=/404.html;location~.*\.(php|php5)?${#fastcgi_passunix:/tmp/php-cgi.sock;fastcgi_pass127.0.0.1:9000;fastcgi_indexind..
分类:
其他好文 时间:
2015-08-04 16:02:24
阅读次数:
129
我需要将网站域名永久301重定向,当用户访问 tqcto.com 的时候,301到 www.tqcto.com ,参考了很多配置资料,都出现了"此网页包含重定向循环"的问题,在尝试了很多次之后,发现以下这个配置是可以解决问题的server_name www.tqcto.com tqcto.com;
if ($host != 'www.tqcto.com' ) {
rewrite ^/(....
分类:
Web程序 时间:
2015-08-04 11:16:13
阅读次数:
165
前几个月学了个tcpdump抓包命令,遇到任何问题总想试试,真是程序员的终级武器呀,它像显微镜一下,把任何的丑陋的bug都显示在你的面前。为什么有题目中所说的疑问呢?因为我发现在不同的环境下面,我获取到的$_SERVER["SERVER_NAME"]是不一样的。$_SERVER顾名思义,它是服务端的...
分类:
Web程序 时间:
2015-08-02 16:28:21
阅读次数:
163
在配置Phalcon 的时候,配置的使用是: server {
listen 80;
server_name localhost.dev;
index index.php index.html index.htm;
set $root_path ‘/var/www/phalcon/public‘;
root $root_path;
location ...
分类:
其他好文 时间:
2015-07-31 10:57:52
阅读次数:
473
繁写:";echo"asdfasdfadsf";$mysql_server_name="localhost";//数据库服务器名称$mysql_username="root";//连接数据库用户名$mysql_password="??????";//连接数据库密码$mysql_database="?...
分类:
数据库 时间:
2015-07-30 11:06:10
阅读次数:
145
108?????server?{
109?????????listen???????443?ssl?;
110?????????listen??????80;
111?????????server_name??www.westos.org;
112??error_page?497??...
分类:
Web程序 时间:
2015-07-28 21:23:32
阅读次数:
206
安装PPTP客户端 apt-get install pptp-linux 设置连接账号信息 sudo vim /etc/ppp/chap-secrets 其中$login_name是登录名;$password是登录密码;$ip如果为*表示为服务器分配,否则自己指定即可。$server_name为服务...
分类:
系统相关 时间:
2015-07-27 20:24:14
阅读次数:
210
server { listen 80; server_name XXXX.funova.net XXX.funova.com; root /opt/newgm; index index.php; locatio...
分类:
Web程序 时间:
2015-07-27 18:47:22
阅读次数:
145