8wDlpd.png
8wDFp9.png
8wDEOx.png
8wDMfH.png
8wDKte.png

Nginx 子域名错误,子域名总是转到主域名的根文件夹

Remus Rusanu 2月前

64 0

我在 nginx 上创建了子域名,我已经在 sites-available 上进行了配置并且已经将其符号链接到 sites-enabled,我还向 cloudflare 添加了记录,例如类型:Aname:Blogco...

我在 nginx 上创建了子域名,我在 sites-available 上做了配置,并且还将其符号链接到 sites-enabled,

我还向cloudflare添加了记录,例如Type: Aname: Blogcontent: IP

但是当我打开子域名时,子域名打开了主域名的根文件夹,尽管我已经在子域名配置中设置了它,如 /var/www/panel/,而子域名打开的是 /var/www/wordpress,它是主域名的根目录

这里是主域的配置


server {
    listen 80 default_server;
    listen [::]:80 default_server;

    server_name example.com www.example.com;

    root /var/www/wordpress;
    index index.php index.html index.nginx-debian.html;

    location / {
        try_files $uri $uri/ /index.php$is_args$args;
    }

    location ~ \.php$ {
        include snippets/fastcgi-php.conf;
        fastcgi_pass unix:/var/run/php/php8.1-fpm.sock;
    }

    error_log /var/log/nginx/example_error.log;
    access_log /var/log/nginx/example_access.log;
}

server {
    listen 443 ssl;
    listen [::]:443 ssl;

    server_name example.com www.example.com;

    ssl_certificate /etc/ssl/example.pem;
    ssl_certificate_key /etc/ssl/example.key;

    root /var/www/wordpress;
    index index.php index.html index.nginx-debian.html;

    location / {
        try_files $uri $uri/ /index.php$is_args$args;
    }

    location ~ \.php$ {
        include snippets/fastcgi-php.conf;
        fastcgi_pass unix:/var/run/php/php8.1-fpm.sock;
    }

    error_log /var/log/nginx/example_error.log;
    access_log /var/log/nginx/example_access.log;
}

这里是子域名的配置

server {
    listen 80;
    listen [::]:80;

    server_name panel.example.com www.panel.example.com;

    root /var/www/panel;
    index index.php index.html index.nginx-debian.html;

    location / {
        try_files $uri $uri/ /index.php$is_args$args;
    }

    location ~ \.php$ {
        include snippets/fastcgi-php.conf;
        fastcgi_pass unix:/var/run/php/php8.1-fpm.sock;
    }
}
帖子版权声明 1、本帖标题:Nginx 子域名错误,子域名总是转到主域名的根文件夹
    本站网址:http://xjnalaquan.com/
2、本网站的资源部分来源于网络,如有侵权,请联系站长进行删除处理。
3、会员发帖仅代表会员个人观点,并不代表本站赞同其观点和对其真实性负责。
4、本站一律禁止以任何方式发布或转载任何违法的相关信息,访客发现请向站长举报
5、站长邮箱:yeweds@126.com 除非注明,本帖由Remus Rusanu在本站《ubuntu》版块原创发布, 转载请注明出处!
最新回复 (0)
  • 请发布相关的 Nginx 配置。另外,我只想问一下,在进行这些更改后,您是否重新加载/重新启动了 Nginx?

返回
作者最近主题: