我正在尝试在 nextcloud.mydomain.com 上设置 nextcloud,而我的常规网站位于 mydomain.com 上。这是我的 nginx 的 default.conf:
server {
listen 80;
listen [::]:80;
server_name IP_HERE;
root /var/www/html/;
index index.php index.html index.htm index.nginx-debian.html;
location / {
try_files $uri $uri/ =404;
}
error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /var/www/html;
}
location ~ \.php$ {
fastcgi_pass unix:/run/php/php7.0-fpm.sock;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
include snippets/fastcgi-php.conf;
}
location ~ /\.ht {
deny all;
}
}
nextcloud.conf 文件遵循本教程的第 4 步:https ://www.linuxbabe.com/ubuntu/install-nextcloud-11-ubuntu-16-04-nginx-config
我不知道为什么,但是当我访问 nextcloud.mydomain.com 时,我只是在我的 /html webroot 中获得了 index.html,而不是 /nextcloud 文件夹中的 nextcloud 设置向导。
有任何想法吗?非常感谢您!