【发布时间】:2020-02-09 09:44:58
【问题描述】:
我是 NGINX 的新手,我正在尝试设置最小的工作。所以我尝试用 nginx 和主管运行 https(通过这个例子)。但我无法正确配置 Nginx 并收到以下错误:
Error Code: nginx: [emerg] "location" directive is not allowed here in /etc/nginx/nginx.conf:16 nginx: configuration file /etc/nginx/nginx.conf test failed .
GNU nano 2.0.9 File: /etc/nginx/nginx.conf
#user nginx;
worker_processes 1;
#error_log /var/log/nginx/error.log;
#error_log /var/log/nginx/error.log notice;
#error_log /var/log/nginx/error.log info;
#pid /var/run/nginx.pid;
include /etc/nginx/modules.conf.d/*.conf;
events {
worker_connections 1024;
}
location ~^/wp-json/ {
rewrite ^/wp-json/(.*?)$ /?rest_route=/$1 last;
}
http {
include mime.types;
default_type application/octet-stream;
#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';
#access_log /var/log/nginx/access.log main;
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65;
#tcp_nodelay on;
#gzip on;
#gzip_disable "MSIE [1-6]\.(?!.*SV1)";
server_tokens off;
include /etc/nginx/conf.d/*.conf;
}
# override global parameters e.g. worker_rlimit_nofile
include /etc/nginx/*global_params;
看起来是正确的。 server 指令应该在 http 中。 http 是父指令。我做错了什么?
【问题讨论】:
-
关于location 的文档明确提到位置只能在
server上下文中定义。 @Chris 的回答是正确的。此外,对于 wordpress,任何虚拟主机都有大量的 nginx 示例。