要搭建Nextcloud,需要在服务器上安装和配置Nginx、PHP和SQLite3。下面是一些基本步骤: 安装Nginx 可以使用包管理器进行安装。例如,在Ubuntu上可以运行以下命令: sudo apt update sudo apt install nginx配置Nginx
wget -P /home/user/downloads https://download.nextcloud.com/server/releases/nextcloud-22.1.0.tar.bz2
把他解压到目录中。 在Nginx配置文件中添加以下内容: server { listen 80; server_name yourdomain.com; root /var/www/nextcloud/; index index.php; location / { try_files $uri $uri/ /index.php?$args; } location ~ \.php$ { include fastcgi_params; fastcgi_pass unix:/var/run/php/php7.4-fpm.sock; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fa