搭建Http靜態(tài)服務(wù)器環(huán)境


搭建靜態(tài)網(wǎng)站,首先需要部署環(huán)境。下面的步驟,將告訴大家如何在服務(wù)器上通過 Nginx 部署 HTTP 靜態(tài)服務(wù)。
安裝 Nginx
在 CentOS 上,可直接" />

国产成人精品无码青草_亚洲国产美女精品久久久久∴_欧美人与鲁交大毛片免费_国产果冻豆传媒麻婆精东

15158846557 在線咨詢 在線咨詢
15158846557 在線咨詢
所在位置: 首頁 > 營銷資訊 > 網(wǎng)站運營 > 搭建 Nginx 靜態(tài)網(wǎng)站

搭建 Nginx 靜態(tài)網(wǎng)站

時間:2023-09-17 02:18:01 | 來源:網(wǎng)站運營

時間:2023-09-17 02:18:01 來源:網(wǎng)站運營

搭建 Nginx 靜態(tài)網(wǎng)站:toujun007 2019-04-28 22:45:01

搭建Http靜態(tài)服務(wù)器環(huán)境


搭建靜態(tài)網(wǎng)站,首先需要部署環(huán)境。下面的步驟,將告訴大家如何在服務(wù)器上通過 Nginx 部署 HTTP 靜態(tài)服務(wù)。
安裝 Nginx
在 CentOS 上,可直接使用 yum 來安裝 Nginx
yum install nginx -y

安裝完成后,使用 nginx 命令啟動 Nginx:
nginx

此時,訪問 http://你的域名 可以看到 Nginx 的測試頁面

如果無法訪問,請重試用 nginx -s reload 命令重啟 Nginx
配置靜態(tài)服務(wù)器訪問路徑


外網(wǎng)用戶訪問服務(wù)器的 Web 服務(wù)由 Nginx 提供,Nginx 需要配置靜態(tài)資源的路徑信息才能通過 url 正確訪問到服務(wù)器上的靜態(tài)資源。
打開 Nginx 的默認配置文件 /etc/nginx/nginx.conf ,修改 Nginx 配置,將默認的 root /usr/share/nginx/html; 修改為: root /data/www;,如下:
示例代碼:/etc/nginx/nginx.conf
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 作為所有靜態(tài)資源請求的根路徑,如訪問: http://<您的域名>/static/index.js,將會去 /data/www/static/ 目錄下去查找 index.js?,F(xiàn)在我們需要重啟 Nginx 讓新的配置生效,如:
nginx -s reload

重啟后,現(xiàn)在我們應(yīng)該已經(jīng)可以使用我們的靜態(tài)服務(wù)器了,現(xiàn)在讓我們新建一個靜態(tài)文件,查看服務(wù)是否運行正常。


首先讓我們在 /data 目錄 下創(chuàng)建 www 目錄,如:
mkdir -p /data/www

創(chuàng)建第一個靜態(tài)文件
在 /data/www 目錄下創(chuàng)建我們的第一個靜態(tài)文件 index.html
示例代碼:/data/www/index.html
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<title>第一個靜態(tài)文件</title>
</head>
<body>
Hello world!
</body>
</html>

現(xiàn)在訪問 http://<您的域名>/index.html 應(yīng)該可以看到頁面輸出 [Hello world!]
到此,一個基于 Nginx 的靜態(tài)服務(wù)器就搭建完成了,現(xiàn)在所有放在 /data/www 目錄下的的靜態(tài)資源都可以直接通過域名訪問。

如果無顯示,請刷新瀏覽器頁面
完成實驗



關(guān)鍵詞:靜態(tài)

74
73
25
news

版權(quán)所有? 億企邦 1997-2025 保留一切法律許可權(quán)利。

為了最佳展示效果,本站不支持IE9及以下版本的瀏覽器,建議您使用谷歌Chrome瀏覽器。 點擊下載Chrome瀏覽器
關(guān)閉