nginx配置不生效,頁面一直是默認頁面welcome to nginx的解決辦法

ubuntu下nginx的配置文件所在目錄:html

/etc/nginx

對nginx的配置nginx

server {
    listen 80;
    server_name example.com;
    root /var/www/example;//這裏是你網站程序的路徑
 
    location / {
        try_files $uri $uri/ /index.html;    
    }

咱們對nginx的配置主要寫在nginx.conf文件裏,這個目錄下還有conf.d和sites-enabled兩個文件夾,裏面爲默認的配置文件。相應的,在配置nginx,編輯nginx.conf文件時,須要把這兩行註釋掉,不然nginx.conf不會生效。 ubuntu

clipboard.png

配置完畢後,檢查配置文件是否正確:網站

nginx -t

clipboard.png

重啓nginx使配置生效:spa

nginx -s reload

出現如下錯誤:code

nginx:[error] open() "/run/nginx.pid" failed (2: No such file or directory)

使用如下命令便可解決:server

nginx -c /etc/nginx/nginx.conf
nginx -s reload

其餘命令:
中止nginx服務:htm

nginx -s stop
相關文章
相關標籤/搜索