配置Nginx定向到服务器中的网站

时间:2018-10-28 17:23:16

标签: nginx server network-programming

我有一个本地运行在127.0.0:8000上的远程centOS服务器,我想用nginx代理。

我已经测试服务器在该地址上运行,并且nginx通过了测试。

当我尝试在浏览器上访问ip时,我得到:enter image description here

我了解我需要编辑Nginx的配置文件。我就是不知道。

我尝试去/etc/nginx/conf.d/index.conf(之所以命名应用索引,是因为原因)

我写了以下内容:

server {
    listen   80;

    server_name  www.<address>.com;

    location / {
        proxy_pass http://127.0.0.1:8000;
        root /home/<user>/WebApp/templates;
        index index.html;
    }
}

index.html位于我放置在root上的路径上。我在做什么错了?

0 个答案:

没有答案