上回咱申請了一個服務器,這回我們來給部署起來用html
因爲我們申請的服務器是linux系統,一般是使用ssh遠程鏈接上去經過命令行界面管理.此處推薦使用xshell.node
百度網盤 >>linux
安裝過程不贅述.想來都能本身看懂nginx
Nginx:一個實現http服務的工具shell
須要在命令行界面執行如下命令:
一行一行輸入,輸入完以後記得按回車,並等待動做完成.
期間若是命令行彈出什麼東西須要確認直接確認便可瀏覽器
apt update apt install -y nginx
將nginx的配置文件拉到本地修改
該文件在服務器的這個位置: /etc/nginx/nginx.conf服務器
user root; worker_processes 4; pid /run/nginx.pid; events { worker_connections 768; } http { sendfile on; tcp_nopush on; tcp_nodelay on; keepalive_timeout 65; types_hash_max_size 2048; include /etc/nginx/mime.types; default_type application/octet-stream; access_log /var/log/nginx/access.log; error_log /var/log/nginx/error.log; server { listen 80; location / { root /home/www/; index index.html; } } }
輸入命令:app
systemctl restart nginx
若是像我同樣,沒有任何報錯多餘信息輸出的話,說明nginx啓動成功:
ssh
隨便打開一個瀏覽器,輸入服務器的ip便可訪問
tcp