目錄
- 一、準備環境
- 二、安裝Nginx
- 1、 安裝Nginx依賴
- 2、下載Nginx
- 3、解壓下載好的Nginx 壓縮包
- 4、編譯安裝Nginx
- 5、啟動Nginx服務
- 三、操作步驟
- 1、使用Xshell連接服務器
- 2、上傳靜態資源文件
- 3、 配置Nginx
- 4、 重啟Nginx服務
- 總結
我們在會開發項目的同時,也應該了解一下前端是如何部署項目的;
一、準備環境
1、服務器或者虛擬機(后端已經搭建好的,這里就不講述如何搭建服務器了)
2、Xshell 和 Xftp –> 存放靜態文件和操作服務器
3、Windows系統
Xshell:是一個強大的安全終端模擬軟件,可以在Windows界面下用來訪問遠端不同系統下的服務器。(作用就是用來連接遠程服務器的)
Xftp:是一個功能強大的SFTP、FTP 文件傳輸軟件。(作用是存放靜態文件和上傳靜態資源)
二、安裝Nginx
使用Xshell連接服務器,既然想要在服務器上面放靜態資源,像HTML,js等,就需要安裝靜態資源服務器。靜態資源服務器有Apache和Nginx,這里我們選用nginx。
1、 安裝Nginx依賴
yum install -y pcre pcre-devel
yum install -y zlib zlib-devel
yum install gcc-c++
yum install -y openssl openssl-devel
2、下載Nginx
wget -c https://nginx.org/download/nginx-0.1.18.tar.gz
3、解壓下載好的Nginx 壓縮包
找到安裝包Nginx安裝路徑,并在目錄下進行解壓。
tar -zxvf nginx-0.1.18.tar.gz
進入解壓好的Nginx目錄下:
cd nginx-0.1.18
4、編譯安裝Nginx
./configure --with-http_ssl_module
make
make install
5、啟動Nginx服務
找到安裝目錄:
whereis nginx
啟動服務:
/usr/local/nginx/sbin/nginx
或者進入Nginx目錄下啟動:
./nginx
三、操作步驟
1、使用Xshell連接服務器
輸入服務器名稱、地址、端口號,連接成功后會讓你輸入賬號和密碼,賬號一般是默認的root。
在Xshell中啟動Nginx:
1、查找安裝的路徑:whereis nginx;
2、執行Nginx啟動命令:/usr/local/nginx/sbin/nginx;
3、查看服務運行狀態:ps -ef | grep nginx;
4、停止服務:kill 進程號; /usr/local/nginx/sbin/nginx -stop
5、重啟服務:/usr/local/nginx/sbin/nginx -s reopen
2、上傳靜態資源文件
連接Xftp,進行文件傳輸。服務器的根目錄是 /root ,這里可以創建一個自己的項目文件目錄進行靜態資源文件的存放。直接把打包后的dist文件放在目標目錄即可。
3、 配置Nginx
在Xhell中進行Nginx的配置:
配置命令:vim /usr/local/nginx/conf/nginx.conf(vim + nginx目錄)
按insert鍵進入編輯模式,說明以及配置文件如下:
#全局塊 :配置影響nginx全局的指令。一般有運行nginx服務器的用戶組,nginx進程pid存放路徑,日志存放路徑,配置文件引入,允許生成worker process數等。 #user nobody/root; #配置用戶或者組,默認為nobody root user root; worker_processes 1; #允許生成的進程數,默認是1 #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid logs/nginx.pid; #指定nginx進程運行文件存放地址 events { #event塊:配置影響nginx服務器或與用戶的網絡連接。有每個進程的最大連接數,選取哪種事件驅動模型處理連接請求,是否允許同時接受多個網路連接,開啟多個網絡連接序列化等。 accept_mutex on; #設置網路連接序列化,防止驚群現象發生,默認為on multi_accept on; #設置一個進程是否同時接受多個網絡連接,默認為off #use epoll; #事件驅動模型,select|poll|kqueue|epoll|resig|/dev/poll|eventport worker_connections 1024; #最大連接數,默認為512 } http { #http塊:可以嵌套多個server,配置代理,緩存,日志定義等絕大多數功能和第三方模塊的配置。如文件引入,mime-type定義,日志自定義,是否使用sendfile傳輸文件,連接超時時間,單連接請求數等。 include mime.types; #文件擴展名與文件類型映射表 default_type application/octet-stream; #默認文件類型,默認為text/plain、octet-stream未知文件類型 #log_format main '$remote_addr - $remote_user [$time_local] "$request" ' # '$status $body_bytes_sent "$http_referer" ' # '"$http_user_agent" "$http_x_forwarded_for"'; #access_log logs/access.log main; sendfile on; #開啟高效文件傳輸模式 #tcp_nopush on; #keepalive_timeout 0; keepalive_timeout 65;#保持請求活躍時間 #gzip on; #error_page 404 https://www.baidu.com; #錯誤頁 #http全局塊 server { #server塊:配置虛擬主機的相關參數,一個http中可以有多個server。 keepalive_requests 120; #單連接請求上限次數。 listen 80; #監聽端口 server_name 127.0.0.1;#監聽地址-->設置對應監聽的域名xxx.com www.baidu.com #charset koi8-r; #access_log logs/host.access.log main; #請求的url過濾,正則匹配,~為區分大小寫,~*為不區分大小寫。 location / { #location塊:配置請求的路由,以及各種頁面的處理情況。 #root path; #根目錄 #index vv.txt; #設置默認頁 root html; index index.html index.htm; #proxy_pass http://mysvr; #請求轉向mysvr 定義的服務器列表-->可以填寫自己的服務器地址 #proxy_read_timeout 150; 代理連接超時時間 #deny 127.0.0.1; #拒絕的ip #allow 172.18.5.54; #允許的ip } #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 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; #} } # another virtual host using mix of IP-, name-, and port-based configuration # #server { # listen 8000; # listen somename:8080; # server_name somename alias another.alias; # location / { # root html; # index index.html index.htm; # } #} # HTTPS server # #server { # listen 443 ssl; # server_name localhost; # ssl_certificate cert.pem; # ssl_certificate_key cert.key; # ssl_session_cache shared:SSL:1m; # ssl_session_timeout 5m; # ssl_ciphers HIGH:!aNULL:!MD5; # ssl_prefer_server_ciphers on; # location / { # root html; # index index.html index.htm; # } #} # 測試配置 server { listen 8777; server_name http://127.0.0.1/; gzip on; # 開啟Gzip # gzip_static on; # 開啟靜態文件壓縮 這句話不要 gzip_min_length 1k; # 不壓縮臨界值,大于1K的才壓縮 gzip_buffers 4 16k; gzip_comp_level 5; gzip_types application/javascript application/x-javascript application/xml application/xml+rss application/x-httpd-php text/plain text/javascript text/css image/jpeg image/gif image/png; # 進行壓縮的文件類型 gzip_http_version 1.1; gzip_vary on; gzip_proxied expired no-cache no-store private auth; gzip_disable "MSIE [1-6]\."; location / { root /home/myProject/dist; # root表示根目錄,這里的路徑需要與Xftp上傳的靜態資源文件的路徑一致 index index.html index.htm; try_files $uri $uri/ /index.html; } location @router { rewrite ^.*$ /index.html last; } } }
修改完成后:wq 保存退出。
4、 重啟Nginx服務
重啟命令:/usr/local/nginx/sbin/nginx -s reopen
最后在瀏覽器中輸入:http://127.0.0.1:8777/即可訪問部署成功的項目;