站點服務請求功能配置:html/
nginx.conf中的http{}中的server{}:
server {#**的路徑匹配,如同django的urls匹配,對使用者的訪問url進行路徑分配listen 85;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
#access_log "pipe:rollback logs/host.access_log interval=1d baknum=7 maxsize=2g" main;
#**的路徑匹配,如同django的urls匹配,對使用者的訪問url進行路徑分配
#當請求url長這樣時:
# 192.168.16.142:85/ 就走如下location配置
location / {
#deny 引數配置禁止訪問的ip
#deny 192.168.16.0/24;
#root引數是定義網頁根目錄的,可以修改
root /opt/html;
#index 定義網頁眉頁名字的
index index.html index.htm;
#當使用者請求url是 192.168.16.142:85/pic/monkeyking.jpg
location /pic {
#通過alias別名引數,去這個路徑下找
alias /opt/pic/;
error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
Nginx站點配置
今天因為專案需要,新建了乙個站點,過了一遍nginx配置站點的過程,記錄一下操作過程。1.將新站點的 檔案放在指定的目錄下,比如 data www test.vso.com 2.在nginx配置檔案下新增乙個站點的配置檔案,新網域名稱定為 test.vso.com nginx配置檔案在 etc ng...
Nginx 配置站點
1 進入 配置資料夾 cd etc nginx cof.d 2 建立乙個一站點名稱命名的配置檔案 vim kestrel syslyracom.conf 3 在.conf 檔案中輸入以下 只需要改動埠號,然後退出儲存 server 4.驗證配置,重新載入 sudo nginx t sudo ngin...
Nginx 配置站點
1 進入 配置資料夾 cd etc nginx cof.d 2 建立乙個一站點名稱命名的配置檔案 vim kestrel syslyracom.conf 3 在.conf 檔案中輸入以下 只需要改動埠號,然後退出儲存 server 4.驗證配置,重新載入 sudo nginx t sudo ngin...