我的網站將我重定向到我的 IP 位址

我的網站將我重定向到我的 IP 位址

您好,我正在為我的 Moodle 網站使用 nginx 和 ubuntu 18

我添加了一個域名,每次我嘗試訪問它時,它總是將我重定向到我的 IP 位址。

這是我的街區

server {
listen 80;
listen [::]:80;
root /var/www/html/moodle;
index  index.php index.html index.htm;
server_name  moodle.mysqite.com;

location / {
    try_files $uri $uri/ =404;
}

location /dataroot/ {
    internal;
    alias /var/www/html/moodledata/;
}

location ~ [^/]\.php(/|$) {
    include snippets/fastcgi-php.conf;
              fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    include fastcgi_params;
}

}

答案1

實際上Moodle做了重定向。我必須更改該網站的moodle資料夾內的config.php

相關內容