点击打开链接
I am running nginx on Raspbian Jessie operating system.
I just created new virtual host and reloaded nginx service:
I just created new virtual host and reloaded nginx service:
/etc/init.d/nginx restartNow I got:
[....] Reloading nginx configuration (via systemctl): nginx.serviceJob for nginx.service failed. See 'systemctl status nginx.service' and 'journalctl -xn' for details. failed!Turns out I can test if the configuration file is OK with:
nginx -t -c /etc/nginx/nginx.confThis time it says:
nginx: [emerg] could not build the server_names_hash, you should increase server_names_hash_bucket_size: 32nginx: configuration file /etc/nginx/nginx.conf test failedLets check what this setting is in config:
grep server_names_hash_bucket_size /etc/nginx/nginx.confAnd it says that it is not configured:
# server_names_hash_bucket_size 64;OK lets increase this as it says:
sed -i "s/^.*server_names_hash_bucket_size..*;$/server_names_hash_bucket_size 64;/" /etc/nginx/nginx.confCheck again:
grep server_names_hash_bucket_size /etc/nginx/nginx.confIts good now:
server_names_hash_bucket_size 64;Lets test config file:
nginx -t -c /etc/nginx/nginx.confThis now says:
nginx: the configuration file /etc/nginx/nginx.conf syntax is oknginx: configuration file /etc/nginx/nginx.conf test is successfulGot to go:
/etc/init.d/nginx restart
再分享一下我老师大神的人工智能教程吧。零基础!通俗易懂!风趣幽默!还带黄段子!希望你也加入到我们人工智能的队伍中来!https://blog.csdn.net/jiangjunshow