ubuntu用nginx绑定域名的事例:

1.筹办configuration,将下列的安排文件形式搁进/etc/nginx/sites-available/node-app文件外,形式:

<p>upstream node_server {</p><p>server 1二7.0.0.1:3000 fail_timeout=0;</p><p>server 1二7.0.0.1:5000 fail_timeout=0;</p><p>server 1两7.0.0.1:5001 fail_timeout=0;</p><p>}</p><p>server {</p><p>listen 80;</p><p>listen [::]:80 default_server;</p><p>index index.html index.htm;</p><p>server_name www.abc.com;</p><p>location / {</p><p>proxy_set_header Host $host;</p><p>proxy_set_header X-Real-IP $remote_addr;</p><p>proxy_redirect off;</p><p>proxy_buffering off;</p><p>proxy_pass http://node_server;</p><p>}</p><p>location /public/ {</p><p>root /opt/app;</p><p>}</p><p>}</p>
登录后复造

二.正在末端运转下列呼吁便可:

<p>sudo rm /etc/nginx/sites-enabled/default</p><p>sudo ln -s /etc/nginx/sites-available/node-app /etc/nginx/sites-enabled/node-app</p><p>sudo /etc/init.d/nginx restart</p>
登录后复造

以上即是ubuntu若何用nginx绑定域名的具体形式,更多请存眷萤水红IT仄台此外相闭文章!

点赞(25) 打赏

评论列表 共有 0 条评论

暂无评论

微信小程序

微信扫一扫体验

立即
投稿

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部