我在Node.js中有一个在端口3010上运行的应用程序(domain.com:3010)。是否可以使其在端口80(domain.com)上运行?
我有一台带有CentOS的VPS服务器。 我搜索了很多,但没有任何效果。
答案 0 :(得分:1)
您可以按照this article
中的说明创建虚拟主机<VirtualHost *:80>
ServerName node.mydomain.com
ProxyRequests off
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
<Location />
ProxyPass http://localhost:3010/
ProxyPassReverse http://localhost:3010/
</Location>
</VirtualHost>
答案 1 :(得分:1)
IMO最好在Node.js前使用Nginx而不是Apache。
配置示例(我的/etc/nginx/conf.d/default.conf
文件)
upstream my-node-app {
server 127.0.0.1:3000;
}
server {
listen 80 default_server;
#server_name _;
server_name www.domain.com domain.com;
access_log /var/log/nginx.access.log main;
location / {
#root /usr/share/nginx/html;
#index index.html index.htm;
proxy_pass http://127.0.0.1:3000/;
}
error_page 404 /404.html;
location = /404.html {
root /usr/share/nginx/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;
}
}
答案 2 :(得分:0)
您可以更改应用配置中的端口,或将端口配置为根据需要在路由器中进行响应。