From 94b2a6dc7b36cdd670f2cee15cd5ed0b1fa33600 Mon Sep 17 00:00:00 2001 From: rthomasv3 <39268276+rthomasv3@users.noreply.github.com> Date: Sun, 15 Aug 2021 16:14:29 -0500 Subject: Updated to highlight custom info per the readme --- nextcloud.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nextcloud.html b/nextcloud.html index ea039f8..fbbe605 100644 --- a/nextcloud.html +++ b/nextcloud.html @@ -41,7 +41,7 @@ EXIT;
Next, we need to ensure that we have SSL certificates generated for your website. If you have not already done this, refer to this guide.
In /etc/nginx/sites-available/ we need to make a new configuration for Nextcloud (example: /etc/nginx/sites-available/nextcloud). Create it and open it, modify, and add the following lines:
upstream php-handler {
- server unix:/var/run/php/php7.4-fpm.sock;
+ server unix:/var/run/php/php7.4-fpm.sock;
server 127.0.0.1:9000;
}
@@ -162,8 +162,8 @@ server {
chmod -R 755 /var/www/nextcloud
Start and enable the php-fpm and the mariadb services (the name of the php-fpm service may have a version number ahead of it, use bash's tab autocomplete to help you out with that):
-systemctl enable php-fpm
-systemctl start php-fpm
+ systemctl enable php7.4-fpm
+systemctl start php7.4-fpm
systemctl enable mariadb
systemctl start mariadb
Reload the nginx service:
--
cgit v1.2.3