NGINX
NGINX相關
Nginx 升級到1.20.1 以上
運行環境 Ubuntu 20.04 echo "deb http://nginx.org/packages/mainline/ubuntu `lsb_release -cs` n...
Nginx - 搭配Fail2ban檢測封鎖
運行環境 Ubuntu 22.04 安裝Fail2ban # 安裝 apt install fail2ban -y # 設定開機自動啟動 systemctl enable...
Nginx 傳遞真實IP
Nginx設定 外部IP經過Nginx處理後會變成Nginx的IP,使用$remote_addr紀錄使用者IP location /{ ..... ...
Nginx 搭配Let’s Encrypt Certbot自動更新SSL憑證
運行環境 Ubuntu 22.04 下載certbot apt install certbot python3-certbot-nginx certbot certonly --...
Nginx 代理的網站 MSIE 錯誤
問題 登入bookstack編輯文章時,發現無法上傳圖片並報錯 <html> <head><title>500 Internal Server Error</title> </head> ...
Nginx 啟用目錄列表的功能
Nginx預設不啟動瀏覽目錄功能,可以加入autoindex參數啟用 location / { autoindex on; ... } 其他參數 au...