Nginx configuration path mounted on the panel problems pagoda

  • Although fitted with pagoda panel does save unnecessary trouble while installing the software, the problem is learned a little Nginx or Apache, you do not need to create a pagoda site.
  • After about a Nginx installed on the pagoda, Nginx can not find the corresponding site's profile, in fact, has been following the path
    Here Insert Picture Description
  • If it is installed directly Nginx, did not use the pagoda panel to install, the default path can be placed under / usr / nginx, so that you can easily configure site-related information.

Such as: Website: http://pt.yunxdr.top/
configuration pt.yunxdr.top.conf

server
{
    listen 80;
    server_name pt.yunxdr.top;
    index index.php index.html index.htm default.php default.htm default.html;
    root /www/wwwroot/pt.yunxdr.top;
    
    #SSL-START SSL相关配置,请勿删除或修改下一行带注释的404规则
    #error_page 404/404.html;
    #SSL-END
    
    #ERROR-PAGE-START  错误页配置,可以注释、删除或修改
    error_page 404 /404.html;
    error_page 502 /502.html;
    #ERROR-PAGE-END
    
    #PHP-INFO-START  PHP引用配置,可以注释或修改
    include enable-php-72.conf;
    #PHP-INFO-END
    
    #REWRITE-START URL重写规则引用,修改后将导致面板设置的伪静态规则失效
    include /www/server/panel/vhost/rewrite/pt.yunxdr.top.conf;
    #REWRITE-END
    
    #禁止访问的文件或目录
    location ~ ^/(\.user.ini|\.htaccess|\.git|\.svn|\.project|LICENSE|README.md)
    {
        return 404;
    }
    
    #一键申请SSL证书验证目录相关设置
    location ~ \.well-known{
        allow all;
    }
    
    location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
    {
        expires      30d;
        error_log off;
        access_log /dev/null;
    }
    
    location ~ .*\.(js|css)?$
    {
        expires      12h;
        error_log off;
        access_log /dev/null; 
    }
    access_log  /www/wwwlogs/pt.yunxdr.top.log;
    error_log  /www/wwwlogs/pt.yunxdr.top.error.log;
}

In fact, a lot less than in front of it, directly with the following code configuration on the line.

server
{
    listen 80;
    server_name pt.yunxdr.top;
    index index.php index.html index.htm default.php default.htm default.html;
    root /www/wwwroot/pt.yunxdr.top;
 }

Then a static Web page will be able to directly access up!

pt.yunxdr.top

Published 208 original articles · won praise 27 · views 80000 +

Guess you like

Origin blog.csdn.net/qq_41684621/article/details/101178013