nginx你們若是沒用過那或多或少都應該聽過,vue的部署、反向代理、負載均衡nginx都能幫你作到。php
今天主要說一下nginx負載均衡咱們的項目,以下圖所示,請求到達nginx,nginx再幫咱們轉發。html
首先使用Docker安裝nginx.vue
docker pull nginx:latest
運行容器,將本地的8080端口映射到容器內部的 80 端口.nginx
docker run --name nginx -p 8080:80 -d nginx
查看nginx容器,若是有錯請看日誌.web
瀏覽器中訪問一下docker
ok,到此咱們的nginx就已安裝完成。vim
咱們準備好3個以上的webapi的項目併發布。api
進入nginx容器瀏覽器
Docker exec -it nginx bash
找到nginx.conf文件並做修改,nginx.conf分爲http塊、events塊和server塊,這次主要在server塊中作更改.bash
此時在nginx容器裏面使用vi或者vim沒有用,須要依次執行以下兩條命令
apt-get update apt-get install vim
進入文件內,末尾處指向了另外一個文件,沒錯這個文件裏就是放server塊配置內容
進入etc/nginx/conf.d/default.conf文件中並作修改
upstream ServiceInstance{
#nginx默認輪詢下面的服務實例 server ***.**.***.***:9007; server ***.**.***.***:9008; server ***.**.***.***:9009; } server { listen 80; server_name localhost; #charset koi8-r; #access_log /var/log/nginx/host.access.log main; location / { #root /usr/share/nginx/html; #index index.html index.htm;
#請求到達後會進行轉發 proxy_pass http://ServiceInstance; } #error_page 404 /404.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; } # proxy the PHP scripts to Apache listening on 127.0.0.1:80 # #location ~ \.php$ { # proxy_pass http://127.0.0.1; #} # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 # #location ~ \.php$ { # root html; # fastcgi_pass 127.0.0.1:9000; # fastcgi_index index.php; # fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name; # include fastcgi_params; #} # deny access to .htaccess files, if Apache's document root # concurs with nginx's one # #location ~ /\.ht { # deny all; #} }
完成以後重啓一下容器,若是有錯誤請查看日誌.
docker restart nginx
瀏覽器中調用一個接口查看
每一次都會輪詢不一樣的服務實例,負載均衡的預期就實現了!
咱們也能夠設置權重比例,weight值越大,請求到達此實例的次數就越多!
upstream ServiceInstance{ #nginx默認輪詢下面的服務實例 server ***.**.***.***:9007 weight=1; server ***.**.***.***:9008 weight=2; server ***.**.***.***:9009 weight=3; }
各位同窗也可慢慢研究,nginx很強大的!😎