summaryrefslogtreecommitdiff
path: root/content/rainloop.md
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2024-07-16 08:35:12 -0400
committerGitHub <noreply@github.com>2024-07-16 08:35:12 -0400
commit93180ed28944395a0d96ee680eedbc89d82ae239 (patch)
tree4e960cf08bf913acc5d3e3ea32ce2ac5d2dc73af /content/rainloop.md
parent83e37569fead9d82c9e875ee2f65077f82776701 (diff)
parent55a56b85a41aa3e2b4e3d530c7fc91691f3a11ca (diff)
Merge pull request #287 from livreware/master
Updated PHP version on several articles; fixed typo, added firewall command and documentation links on mumble.md
Diffstat (limited to 'content/rainloop.md')
-rw-r--r--content/rainloop.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/content/rainloop.md b/content/rainloop.md
index 97b59cb..b84413c 100644
--- a/content/rainloop.md
+++ b/content/rainloop.md
@@ -26,7 +26,7 @@ First we will install the required packages for Rainloop with the
following command:
```sh
-apt-get install php7.4 php7.4-common php7.4-curl php7.4-xml php7.4-fpm php7.4-json php7.4-dev php7.4-mysql unzip -y
+apt-get install php php-common php-curl php-xml php-fpm php-json php-dev php-mysql unzip -y
```
Then we will download the community version of Rainloop, unzip it into
@@ -65,7 +65,7 @@ server {
fastcgi_index index.php;
fastcgi_split_path_info ^(.+\.php)(.*)$;
fastcgi_keep_conn on;
- fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
+ fastcgi_pass unix:/var/run/php/php-fpm.sock;
include /etc/nginx/fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}