当使用openresty时为什么不能删除nginx配置

2q5ifsrm  于 2023-03-17  发布在  Nginx
关注(0)|答案(1)|浏览(142)

我使用openresty openresty/1.21.4.1作为Web服务器,今天我将nginx配置从/etc/nginx/复制到/usr/local/openresty/nginx/,然后我删除了nginx /etc/nginx/的配置,但是Web服务器无法访问,我使用以下命令显示openresty配置:

[root@k8smasterone nginx]# /usr/local/openresty/bin/openresty -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

openresty是否使用nginx配置?是否可以使用/usr/local/openresty/nginx/conf中的配置创建openresty?我应该把nginx配置放在哪里?

pkmbmrz7

pkmbmrz71#

是的,bin/openresty是Nginx命令的别名。您可以使用-p-c标志指向您的配置:

$ /usr/local/openresty/bin/openresty -h

Options:
  -p prefix     : set prefix path (default: /usr/local/openresty)
  -c filename   : set configuration file (default: PREFIX/nginx.conf)
  ...

相关问题