本地nginx自定义网址

时间:2016-08-16 13:13:14

标签: nginx

有人可以帮助我将此apache文件转换为nginx。我追求的最重要的是' neptix'作为网站名称..所以在浏览器中,我可以使用:neptix / about-us,neptix / contact-us。注意:没有.com

modal-body

1 个答案:

答案 0 :(得分:0)

可能这会有所帮助(可能需要一些小调整):

server {
    listen 80;
    server_name .neptix;
    index index.php index.html index.htm;

    location /api {
        proxy_pass http://52.35.118.165/api;
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
    }

    location / {
        proxy_pass http://localhost:3000;
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
    }
}