秀米云香港服务器

许多人都可以遇到一个陷阱。下面我们列出,我们常常看到的问题,以及表明如何办理这些问题。在Freenode上的#nginx IRC频道这些接头很频繁。

1、权限

序列号 CPU RAM HDD 带宽 售价(美元) 免费试用
香港服务器1 E5-2620 32G 1T HDD 50M/无限流量 $196.00 立即申请
香港服务器2 E5-2650 32G 1T HDD 50M/无限流量 $256.00 立即申请
香港服务器3 E5-2680 32G 1T HDD 50M/无限流量 $316.00 立即申请
香港服务器4 E5-2690 32G 1T HDD 50M/无限流量 $336.00 立即申请
香港服务器5 E5-2697 32G 1T HDD 50M/无限流量 $376.00 立即申请
香港服务器6 E5-2620*2 32G 1T HDD 50M/无限流量 $376.00 立即申请
香港服务器7 E5-2650*2 32G 1T HDD 50M/无限流量 $436.00 立即申请
香港服务器8 E5-2680*2 32G 1T HDD 50M/无限流量 $476.00 立即申请
香港服务器9 E5-2690*2 32G 1T HDD 50M/无限流量 $556.00 立即申请
香港服务器10 E5-2697*2 32G 1T HDD 50M/无限流量 $596.00 立即申请
香港服务器11 E5-2680v4*2 32G 1T HDD 50M/无限流量 $696.00 立即申请
香港服务器12 E5-2698v4*2 32G 1T HDD 50M/无限流量 $796.00 立即申请

从来不要利用777权限,查察目次的权限

2、root配置

BAD:

server{server_namewww.example.com;location/{root/var/www/nginx-default/;#[...]}location/foo{root/var/www/nginx-default/;#[...]}location/bar{root/var/www/nginx-default/;#[...]}}

GOOD:

server{server_namewww.example.com;root/var/www/nginx-default/;location/{#[...]}location/foo{#[...]}location/bar{#[...]}}3、索引配置

BAD:

http{indexindex.phpindex.htmindex.html;server{server_namewww.example.com;location/{indexindex.phpindex.htmindex.html;#[...]}}server{server_nameexample.com;location/{indexindex.phpindex.htmindex.html;#[...]}location/foo{indexindex.php;#[...]}}}

GOOD:

http{indexindex.phpindex.htmindex.html;server{server_namewww.example.com;location/{#[...]}}server{server_nameexample.com;location/{#[...]}location/foo{#[...]}}}4、Using If

if 是邪恶的 拜见If Is Evil

5、Server Name (If)

BAD:

server{server_nameexample.com*.example.com;if($host~*^www.(.+)){set$raw_domain$1;rewrite^/(.*)$$raw_domain/$1permanent;}#[...]}}

每次都要检测主机头,这是低效的,英国服务器俄罗斯主机,你应该制止,推荐利用下面的

GOOD:

标题:使用nginx时常见的错误以及解决办法

地址: https://www.yunhk.xyz/25766.html