Nextcloud是一个免费(开放源代码)Dropbox类软件,它是ownCloud项目的一个分支。 Nextcloud是用PHP和JavaScript编写的,它支持许多数据库系统,如MySQL / MariaDB,PostgreSQL,Oracle Database和SQLite。 为了使您的文件与Desktop和您自己的服务器保持同步,Nextcloud提供Windows,Linux和Mac桌面应用程序以及Android和iOS的移动应用程序。 Nextcloud不仅仅是一个Dropbox克隆,它还提供了诸如日历,联系人,计划任务和使用Ampache的流媒体等附加功能。
在本教程中,我将介绍如何在CentOS 7服务器上安装和配置最新的Nextcloud 10版本。 我将使用Nginx Web服务器和PHP7-FPM运行Nextcloud,并使用MariaDB作为数据库系统。
前提条件
- CentOS 7 64bit
- 服务器上的根权限
第1步 - 在CentOS 7上安装Nginx和PHP7-FPM
在开始使用Nginx和php7-fpm安装之前,我们必须添加EPEL软件包存储库。 用这个yum命令安装它。
yum -y install epel-release
现在从EPEL仓库安装Nginx。
yum -y install nginx
那么我们必须为php7-fpm添加另一个存储库。 网上有几个提供PHP 7软件包的存储库,我将在这里使用webtatic。
添加PHP7-FPM webtatic存储库:
rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm
接下来,为Nextcloud安装安装PHP7-FPM和一些其他软件包。
yum -y install php70w-fpm php70w-cli php70w-gd php70w-mcrypt php70w-mysql php70w-pear php70w-xml php70w-mbstring php70w-pdo php70w-json php70w-pecl-apcu php70w-pecl-apcu-devel
最后,从服务器终端检查PHP版本,以验证PHP是否正确安装。
php -v
第2步 - 配置PHP7-FPM
在这一步中,我们将配置php-fpm以运行Nginx。 Php7-fpm将在用户nginx下运行,并在端口9000上监听。
使用vim编辑默认的php7-fpm配置文件。
vim /etc/php-fpm.d/www.conf
在第8行和第10行中,将用户和组更改为“ nginx ”。
user = nginx
group = nginx
在第22行中,确保php-fpm在服务器端口下运行。
listen = 127.0.0.1:9000
取消注释线366-370以激活php-fpm系统环境变量。
env[HOSTNAME] = $HOSTNAME
env[PATH] = /usr/local/bin:/usr/bin:/bin
env[TMP] = /tmp
env[TMPDIR] = /tmp
env[TEMP] = /tmp
保存文件并退出vim编辑器。
接下来,为'/ var / lib /'目录中的会话路径创建一个新目录,并将所有者更改为'nginx'用户。
mkdir -p /var/lib/php/session
chown nginx:nginx -R /var/lib/php/session/
现在开始php-fpm和Nginx,然后使服务在启动时启动。
sudo systemctl start php-fpm
sudo systemctl start nginx
sudo systemctl enable php-fpm
sudo systemctl enable nginx
PHP7-FPM配置完成。
第3步 - 安装和配置MariaDB
我将使用MariaDB作为Nextcloud数据库。 使用yum从CentOS存储库安装mariadb-server软件包。
yum -y install mariadb mariadb-server
启动MariaDB服务并将其添加到启动时运行。
systemctl start mariadb
systemctl enable mariadb
现在配置MariaDB root密码。
mysql_secure_installation
请求时输入您的root密码。
Set root password? [Y/n] Y
New password:
Re-enter new password:
Remove anonymous users? [Y/n] Y
Disallow root login remotely? [Y/n] Y
Remove test database and access to it? [Y/n] Y
Reload privilege tables now? [Y/n] Y
MariaDB根密码已经设置好了,现在我们可以登录到mysql shell来为Nextcloud创建一个新的数据库和一个新的用户。 我将创建一个名为' nextcloud_db '的新数据库和一个用户' nextclouduser ',密码为' nextclouduser @ '。 为安装选择安全密码!
mysql -u root -p
Type Password
键入下面的mysql查询来创建一个新的数据库和一个新的用户。
create database nextcloud_db;
create user nextclouduser@localhost identified by 'nextclouduser@';
grant all privileges on nextcloud_db.* to nextclouduser@localhost identified by 'nextclouduser@';
flush privileges;
已创建具有用户“nextclouduser”的nextcloud_db数据库。
第4步 - 为Nextcloud生成自签名SSL证书
在本教程中,我将使用客户端的https连接运行nextcloud。 您可以使用免费的SSL,如加密或创建 自签名 SSL证书。 我将使用OpenSSL命令创建自己的自签名SSL证书文件。
为SSL文件创建新目录。
mkdir -p /etc/nginx/cert/
并使用以下的openssl命令生成新的SSL证书文件。
openssl req -new -x509 -days 365 -nodes -out /etc/nginx/cert/nextcloud.crt -keyout /etc/nginx/cert/nextcloud.key
最后,使用chmod将所有证书文件的权限更改为600。
chmod 700 /etc/nginx/cert
chmod 600 /etc/nginx/cert/*
第5步 - 下载并安装Nextcloud
我们将下载Nextcloud与wget直接到服务器,所以我们必须首先安装wget。 另外,我们需要解压缩程序。 用yum安装这两个应用程序。
yum -y install wget unzip
转到/ tmp目录,并从具有wget的Nextcloud网站下载最新的稳定的Nextcloud 10版本。
cd /tmp
wget https://download.nextcloud.com/server/releases/nextcloud-10.0.2.zip
提取nextcloud zip文件并将其内容移至“/ usr / share / nginx / html /”目录。
unzip nextcloud-10.0.2.zip
mv nextcloud/ /usr/share/nginx/html/
接下来,转到Nginx Web根目录,并为Nextcloud创建一个新的'data'目录。
cd /usr/share/nginx/html/
mkdir -p nextcloud/data/
将'nextcloud'目录的所有者更改为'nginx'用户和组。
chown nginx:nginx -R nextcloud/
第6步 - 在Nginx中配置Nextcloud虚拟主机
在第5步中,我们下载了Nextcloud源代码并将其配置为在Nginx Web服务器下运行。 但是,我们仍然需要为Nextcloud配置虚拟主机。 在Nginx'conf.d'目录中创建一个新的虚拟主机配置文件'nextcloud.conf'。
cd /etc/nginx/conf.d/
vim nextcloud.conf
在下面粘贴Nextcloud虚拟主机配置。
upstream php-handler {
server 127.0.0.1:9000;
#server unix:/var/run/php5-fpm.sock;
}
server {
listen 80;
server_name cloud.nextcloud.co;
# enforce https
return 301 https://$server_name$request_uri;
}
server {
listen 443 ssl;
server_name cloud.nextcloud.co;
ssl_certificate /etc/nginx/cert/nextcloud.crt;
ssl_certificate_key /etc/nginx/cert/nextcloud.key;
# Add headers to serve security related headers
# Before enabling Strict-Transport-Security headers please read into this
# topic first.
add_header Strict-Transport-Security "max-age=15768000;
includeSubDomains; preload;";
add_header X-Content-Type-Options nosniff;
add_header X-Frame-Options "SAMEORIGIN";
add_header X-XSS-Protection "1; mode=block";
add_header X-Robots-Tag none;
add_header X-Download-Options noopen;
add_header X-Permitted-Cross-Domain-Policies none;
# Path to the root of your installation
root /usr/share/nginx/html/nextcloud/;
location = /robots.txt {
allow all;
log_not_found off;
access_log off;
}
# The following 2 rules are only needed for the user_webfinger app.
# Uncomment it if you're planning to use this app.
#rewrite ^/.well-known/host-meta /public.php?service=host-meta last;
#rewrite ^/.well-known/host-meta.json /public.php?service=host-meta-json
# last;
location = /.well-known/carddav {
return 301 $scheme://$host/remote.php/dav;
}
location = /.well-known/caldav {
return 301 $scheme://$host/remote.php/dav;
}
# set max upload size
client_max_body_size 512M;
fastcgi_buffers 64 4K;
# Disable gzip to avoid the removal of the ETag header
gzip off;
# Uncomment if your server is build with the ngx_pagespeed module
# This module is currently not supported.
#pagespeed off;
error_page 403 /core/templates/403.php;
error_page 404 /core/templates/404.php;
location / {
rewrite ^ /index.php$uri;
}
location ~ ^/(?:build|tests|config|lib|3rdparty|templates|data)/ {
deny all;
}
location ~ ^/(?:\.|autotest|occ|issue|indie|db_|console) {
deny all;
}
location ~ ^/(?:index|remote|public|cron|core/ajax/update|status|ocs/v[12]|updater/.+|ocs-provider/.+|core/templates/40[34])\.php(?:$|/) {
include fastcgi_params;
fastcgi_split_path_info ^(.+\.php)(/.*)$;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param HTTPS on;
#Avoid sending the security headers twice
fastcgi_param modHeadersAvailable true;
fastcgi_param front_controller_active true;
fastcgi_pass php-handler;
fastcgi_intercept_errors on;
fastcgi_request_buffering off;
}
location ~ ^/(?:updater|ocs-provider)(?:$|/) {
try_files $uri/ =404;
index index.php;
}
# Adding the cache control header for js and css files
# Make sure it is BELOW the PHP block
location ~* \.(?:css|js)$ {
try_files $uri /index.php$uri$is_args$args;
add_header Cache-Control "public, max-age=7200";
# Add headers to serve security related headers (It is intended to
# have those duplicated to the ones above)
# Before enabling Strict-Transport-Security headers please read into
# this topic first.
add_header Strict-Transport-Security "max-age=15768000;
includeSubDomains; preload;";
add_header X-Content-Type-Options nosniff;
add_header X-Frame-Options "SAMEORIGIN";
add_header X-XSS-Protection "1; mode=block";
add_header X-Robots-Tag none;
add_header X-Download-Options noopen;
add_header X-Permitted-Cross-Domain-Policies none;
# Optional: Don't log access to assets
access_log off;
}
location ~* \.(?:svg|gif|png|html|ttf|woff|ico|jpg|jpeg)$ {
try_files $uri /index.php$uri$is_args$args;
# Optional: Don't log access to other assets
access_log off;
}
}
保存文件并退出vim。
现在测试Nginx配置以确保没有错误,s-然后重新启动服务。
nginx -t
systemctl restart nginx
第7步 - 为Nextcloud配置SELinux和FirewallD
在本教程中,我们将使SELinux处于执行模式,因此我们需要一个新的软件包SELinux管理工具来为Nextcloud配置SELinux。
使用此命令安装SELinux管理工具。
yum -y install policycoreutils-python
然后以root用户身份执行以下命令,以允许Nextcloud在SELinux下运行。 记住要更改Nextcloud目录,以防您使用不同的目录。
semanage fcontext -a -t httpd_sys_rw_content_t '/usr/share/nginx/html/nextcloud/data(/.*)?'
semanage fcontext -a -t httpd_sys_rw_content_t '/usr/share/nginx/html/nextcloud/config(/.*)?'
semanage fcontext -a -t httpd_sys_rw_content_t '/usr/share/nginx/html/nextcloud/apps(/.*)?'
semanage fcontext -a -t httpd_sys_rw_content_t '/usr/share/nginx/html/nextcloud/assets(/.*)?'
semanage fcontext -a -t httpd_sys_rw_content_t '/usr/share/nginx/html/nextcloud/.htaccess'
semanage fcontext -a -t httpd_sys_rw_content_t '/usr/share/nginx/html/nextcloud/.user.ini'
restorecon -Rv '/usr/share/nginx/html/nextcloud/'
接下来,我们将启用firewalld服务,并为Nextcloud打开HTTP和HTTPS端口。
启动firewalld并启用它在启动时启动。
systemctl start firewalld
systemctl enable firewalld
现在使用firewall-cmd命令打开HTTP和HTTPS端口,然后重新加载防火墙。
firewall-cmd --permanent --add-service=http
firewall-cmd --permanent --add-service=https
firewall-cmd --reload
所有的服务器配置都完成了。
第8步 - Nextcloud安装向导
打开您的Web浏览器并键入您的Nextcloud域名,我的是:cloud.nextcloud.co。 您将被重定向到安全的https连接。
键入所需的管理用户名和密码,然后键入您的数据库凭据。 点击“ 完成设置 ”。
Nextcloud管理控制面板(文件管理器)出现。
Nextcloud用户设置。
管理员设置。
Nextcloud已在CentOS 7服务器上安装了Nginx,PHP7-FPM和MariaDB。