Nginx的簡單配置

2021-09-19 10:39:45 字數 990 閱讀 7530

這是乙個nginx的簡單配置,只滿足輸入網域名稱,就可以跳到專案路徑中。省去還要輸入埠和路徑。1.1 windows 上安裝nginx

執行nginx,兩種方式

3 檢查是否成功安裝nginx

在瀏覽器中輸入 localhost:80

出現wellcome to nginx 頁面變成功了。

2.1 debian上的安裝nginx

#這個location代表 你的介面或者controller 例如 要訪問的介面在 /demo這個目錄下,可以這樣配置。

location /demo

#這裡是載入這些樣式啥的

#這是是載入 js和css的

location ~ .*\.(js|css)?$

#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

# proxy the php scripts to apache listening on 127.0.0.1:80

##location ~ \.php$

# pass the php scripts to fastcgi server listening on 127.0.0.1:9000

##location ~ \.php$

# deny access to .htaccess files, if apache's document root

# concurs with nginx's one

##location ~ /\.ht

}

簡單的nginx配置

nginx 部署專案步驟 1 nginx部署安裝步驟 省略 2 部署新專案步驟 找到nginx.conf的位置,一般放在 usr local nginx conf 或者 usr local webservie nginx conf 或者 etc nginx conf 編輯nginx.conf vim...

Nginx的簡單配置

在這裡首先介紹一種原始碼的方式安裝nginx,通過這種安裝方式我們可以在編譯前進行自定義配置,然後編譯出我們自己想要的nginx。比如增加對https協議的支援 nginx安裝路徑等。nginx官網 wget 進入nginx的解壓目錄,我們能看到configure這個檔案,在命令列下執行.confi...

nginx 簡單配置

server 檔案快取 js css檔案快取 location js css 不把css js image相應的資源檔案寫入快取,會導致資源檔案404,無法被訪問。至於快取的時間長短可以自己設定。在nginx的location和配置中location的順序沒有太大關係。與location表示式的型別...