本篇記錄使用nginx的一些tricks。
修改配置檔案
nginx預設的web根目錄是:/usr/share/nginx/html/,一般我們都是習慣的是:/var/www/html。現進行更改,具體操作如下:
[lz@mail ~]$sudo cat /etc/nginx/conf.d/default.confservererror_page
404 /404
.html;
error_page
500502
503504 /50x.html;
location = /50x.html
location ~\.php$
}
修改root處的配置為:root/var/www/html;
重啟服務
[lz@mail ~]$sudo service nginx restartredirecting to /bin/systemctl restart nginx.service[lz@mail ~]$sudo service nginx statusredirecting to /bin/systemctl status nginx.service
● nginx.service - nginx -high performance web server
loaded: loaded (/usr/lib/systemd/system/nginx.service; enabled; vendor preset: disabled)
active: active (running) since 五
8月 17
16:49:06 mail.starnight.com systemd[1]: starting nginx -high performance web server...
8月 17
16:49:06 mail.starnight.com systemd[1]: started nginx - high performance web server.
references:
centos6.4下配置nginx伺服器更改根目錄
Nginx 使用筆記
程序 關係 1master n workers 乙個主程序,多個工作程序 conf 配置檔案目錄 fastcgi.conf fastcgi.conf.default fastcgi params fastcgi params.default koi utf koi win mime.types 設定...
nginx使用筆記
參考自官方文件 案例分析 假如有配置檔案 location hi那麼,如果原始請求的 url 是的話,則被 伺服器收到的 url 是什麼?答案是http 被 伺服器網域名稱.com hi。如果配置檔案是這樣 location hi那麼,如果原始請求的 url 是的話,則被 伺服器收到的 url 是什...
nginx使用筆記
1.反向 時攜帶真實ip location 2.用nginx做web伺服器,如果沒有處理好日誌,日誌檔案可能會很恐怖 10g 20g。可以修改nginx.conf 找到access log access log dev null error log dev null 這樣全部把他們丟到系統的黑洞裡了...