내 사이트가 나를 내 IP 주소로 리디렉션합니다.

내 사이트가 나를 내 IP 주소로 리디렉션합니다.

안녕하세요 저는 무들 사이트에 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

실제로 무들이 리디렉션을 수행했습니다. 사이트의 무들 폴더 안의 config.php를 변경해야 합니다

관련 정보