1. 程式人生 > >MobaXterm配置埠步驟

MobaXterm配置埠步驟

開啟MobaXterm,登入進去之後,通過路徑 ../usr/local/nginx/html/ 進入放專案的地方。 新建一個資料夾,命名為你的專案名,然後在你新建的資料夾裡放入打包之後的專案檔案。 接著:

1、在命令列輸入 cd.. 回車 2、cd usr/ 回車 3、cd local/ 回車 4、cd nginx/ 回車 5、cd conf 回車 6、vi nginx.conf 回車 7、進入埠配置:    (1) Press ENTER or type command to continue(這裡直接按回車);    (2) 在鍵盤按下字母鍵 i ,進入編輯模式;    (3) 這裡假設我的專案名為charge,配置埠號為88,專案裡跨域配置的路徑重寫為'/api',     資料請求的地址為http://47.92.34.130:8080/chargeSub/。          #gzip  on;

    upstream servercharge{             server localhost:88;         }

    server {             listen 88;             server_name localhost;

            location / {                 root html/charge;                 index index.html index.htm;             }

            location /api {                 # rewrite  ^/apis/(.*)$ /$1 break;                 proxy_pass   http://47.92.34.130:8080/chargeSub/;             }

         }

    (4) 在鍵盤按下 Esc 鍵,退出編輯模式,接著 Shift + ; ,然後是輸入命令 wq! ,     回車,儲存並退出。

8、cd .. 回車 9、cd sbin/ 回車 10、 ./nginx -s reload 回車

完成!