您好,登錄后才能下訂單哦!
這篇文章主要講解了“NGINX怎么搭建靜態網站”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“NGINX怎么搭建靜態網站”吧!
任務時間:15min ~ 30min
搭建靜態網站,首先需要部署環境。下面的步驟,將告訴大家如何在服務器上通過 Nginx 部署 HTTP 靜態服務。
在 CentOS 上,可直接使用 yum
來安裝 Nginx
yum install nginx -y
安裝完成后,使用 nginx
命令啟動 Nginx:
nginx
此時,訪問 http://ip 可以看到 Nginx 的測試頁面 [?]
如果無法訪問,請重試用
nginx -s reload
命令重啟 Nginx
外網用戶訪問服務器的 Web 服務由 Nginx 提供,Nginx 需要配置靜態資源的路徑信息才能通過 url 正確訪問到服務器上的靜態資源。
打開 Nginx 的默認配置文件 /etc/nginx/nginx.conf ,修改 Nginx 配置,將默認的 root /usr/share/nginx/html;
修改為: root /data/www;
,如下:
user nginx;worker_processes auto;error_log /var/log/nginx/error.log;pid /run/nginx.pid; include /usr/share/nginx/modules/*.conf; events { worker_connections 1024;} http { 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 /var/log/nginx/access.log main; 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; include /etc/nginx/conf.d/*.conf; server { listen 80 default_server; listen [::]:80 default_server; server_name _; root /data/www; include /etc/nginx/default.d/*.conf; location / { } error_page 404 /404.html; location = /40x.html { } error_page 500 502 503 504 /50x.html; location = /50x.html { } } }
配置文件將 /data/www/static 作為所有靜態資源請求的根路徑,如訪問: http://<您的域名>/static/index.js
,將會去 /data/www/static/ 目錄下去查找 index.js
。現在我們需要重啟 Nginx 讓新的配置生效,如:
nginx -s reload
重啟后,現在我們應該已經可以使用我們的靜態服務器了,現在讓我們新建一個靜態文件,查看服務是否運行正常。
首先讓我們在 /data 目錄 下創建 www
目錄,如:
mkdir -p /data/www
在 /data/www 目錄下創建我們的第一個靜態文件 index.html
<!DOCTYPE html><html lang="zh"><head> <meta charset="UTF-8"> <title>第一個靜態文件</title></head><body>Hello world!</body></html>
如果無顯示,請刷新瀏覽器頁面
感謝各位的閱讀,以上就是“NGINX怎么搭建靜態網站”的內容了,經過本文的學習后,相信大家對NGINX怎么搭建靜態網站這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。