[root@c7 sbin]# ./nginx -t
nginx: [emerg] directive "server_name" is not terminated by ";" in /usr/local/openresty/nginx/conf/nginx.conf:109
nginx: configuration file /usr/local/openresty/nginx/conf/nginx.conf test failed
[root@c7 sbin]# vim ../conf/nginx.conf
[root@c7 sbin]# ./nginx -t
nginx: the configuration file /usr/local/openresty/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/openresty/nginx/conf/nginx.conf test is successful
意思很明显:109行的 server_name 没有以分号结尾 ,补上即可;