Nginx:在本地主机上路由

时间:2020-04-13 15:27:11

标签: nginx routing nginx-config

我想配置Nginx以便在本地路由多个项目而不会碰 我计算机上的hosts文件。

即Nginx应该至少处理路径

  1. http://localhost/project-one

  2. http://localhost/project-two

我找到了一个example,但在我的情况下不起作用:

# /etc/nginx/conf.ddefault.conf
server {
    listen       80;
    # server_name  localhost;
    index  index.html index.htm;

    location ~ ^/project-one {
        root   /usr/share/nginx/html/project-one;
        # index  index.html index.htm;
    }

    location ~ ^/project-two {
        root   /usr/share/nginx/html/project-two;
        # index  index.html index.htm;
    }

    #error_page  404              /404.html;

    # redirect server error pages to the static page /50x.html
    #
    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   /usr/share/nginx/html;
    }
}

如果我仅将一个location设置为一个斜线并要求使用root,则该方法有效:

# /etc/nginx/conf.ddefault.conf
server {
    listen       80;
    # server_name  localhost;
    index  index.html index.htm;

    location / {
        root   /usr/share/nginx/html/project-one;
        # index  index.html index.htm;
    }
}

通过此配置,它显示了project-onehttp://localhost目录中的html文件。

我正在使用Docker进行测试:

docker run --rm --name my-nginx -p 80:80 -v $(pwd)/sites:/etc/nginx/conf.d -v $(pwd)/html:/usr/share/nginx/html -d nginx

因此,我可以分别更改本地目录中Nginx和default.conf文件夹的html文件,然后重新启动:docker restart my-nginx

如何在不触摸hosts文件的情况下为多个根正确配置多个位置?

1 个答案:

答案 0 :(得分:1)

好吧,我终于明白了...

server {
    listen       80;
    # server_name  localhost;
    index  index.html index.htm;

    location ~ ^/project-one {
        root   /usr/share/nginx/html;
        # index  index.html index.htm;
    }

    location ~ ^/project-two {
        root   /usr/share/nginx/html;
        # index  index.html index.htm;
    }
}

现在它可以按我预期的方式工作:

http://localhost/project-one

http://localhost/project-two

每个请求都相对路由到另一个文件夹:

/usr/share/nginx/html/project-one/index.html

/usr/share/nginx/html/project-two/index.html

感谢@RichardSmith。