こんにちは、私は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を変更する必要があります。