summaryrefslogtreecommitdiff
path: root/content/rss-bridge.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/rss-bridge.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/rss-bridge.md')
-rw-r--r--content/rss-bridge.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/content/rss-bridge.md b/content/rss-bridge.md
index 5876d88..5ff9fa7 100644
--- a/content/rss-bridge.md
+++ b/content/rss-bridge.md
@@ -25,7 +25,7 @@ setup Fail2Ban. There\'s a great tutorial on how to do this [which can be read h
Next we\'ll install the required packages:
```sh
-apt install -y curl unzip nginx certbot php-fpm php-mysql php-cli php7.4-mbstring php7.4-curl php7.4-xml php7.4-sqlite3 php7.4-json
+apt install -y curl unzip nginx certbot php-fpm php-mysql php-cli php-mbstring php-curl php-xml php-sqlite3 php-json
```
We now have to create the website configuration file. Create/open the a
@@ -49,7 +49,7 @@ server {
location ~ \.php$ {
include snippets/fastcgi-php.conf;
- fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
+ fastcgi_pass unix:/var/run/php/php-fpm.sock;
}
location ~ /\.ht {