如何制作' 127.0.0.1:1110 / abcService.svc'网址可访问

时间:2015-01-29 07:29:49

标签: networking nginx port server web-hosting

我已经创建了一个abcService.svc并准备好进行访问。但我想在我的案例1110中的特定端口上提供它。我如何实现这一目标?我启动并运行了nginx和glassfish服务器。哪两个会是更好的选择?

1 个答案:

答案 0 :(得分:0)

此配置可以帮助您:

...
    server {
       listen 1110;
       root /path/to/abcService.svc;
       .... Your directives
    }

将此添加到您的conf文件后,您必须重新加载nginx。