nodejs安装好之后,可以使用ip加端口访问,如果想用域名访问,可以通过Apache或者Nginx,我这里用的是Apache
1、修改httpd.conf文件
<VirtualHost *:80>
ServerName app.990996.cn
ServerAlias app.990996.cn
ProxyRequests off
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
<Location />
ProxyPass http://127.0.0.1:8360/
ProxyPassReverse http://127.0.0.1:8360/
</Location>
</VirtualHost>
2、重启服务即可
时间: 2024-10-24 08:51:39