Nginx 配置文件未按预期工作

Nginx 配置文件未按预期工作

我有一个在端口 80 上运行 Nginx 的 docker,我将端口转发到 8080,因此我可以在 localhost:8080 中本地看到它

我使用 ngrok 创建了一个 URL。使用新创建的 URL,我可以在本地查看 Nginx 的欢迎页面。假设我的 URL 是http://myurl.ngrok.io/

我现在想要的是 Nginx 监听请求,如果我问http://myurl.ngrok.io/mylocation 它将返回 200 并打印 YES!!!。

这是我配置 nginx.conf 的方式:

user  nginx;
worker_processes  1;

error_log  /var/log/nginx/error.log warn;
pid        /var/run/nginx.pid;


events {
    worker_connections  1024;
}


http {
    include       /etc/nginx/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  65;

    #gzip  on;

    include /etc/nginx/conf.d/*.conf;

    server {
       listen 8080 default_server;
       server_name _;
       add_header X-debug-message "A static file was served" always;
       return 200;

       location \mylocation {
           return 200 'YES!!!';
       }
    }
}

配置 nginx.conf 文件后,我点击:

root@ec24***f108:/etc/nginx# nginx -s reload
2021/02/21 13:47:55 [notice] 1048#1048: signal process started

然后去http://myurl.ngrok.io/mylocation我得到 404!

我究竟做错了什么?

答案1

return 200;块中有一个server,它将在语句之前被处理location。只有当语句是块需要做的唯一事情时才将return语句放入块中,否则,它需要放在另一个块内。serverserver

location语句与 URI 完全匹配/*。如果您想要与location任何 URI 匹配的 ,请使用location /。请参阅这个文件了解详情。

答案2

include /etc/nginx/conf.d/*.conf;

这行意味着 *.conf(任何 .conf 文件)将比 nginx.conf(我在问题中展示的文件)获得更高的优先级。

在 /etc/nginx/conf.d/default.conf 中有一个 server { } 部分,每当我请求该站点时都会加载该部分,而我在 nginx.conf 中写入的 server { } 则不被考虑。

我所要做的就是从 nginx.conf 中标记出包含行,然后使用以下命令重新加载 Nginx

nginx -s reload

现在每次加载页面时,都会考虑 nginx.conf。

相关内容