summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Smith <Luke Smith>2022-06-25 11:55:20 -0400
committerLuke Smith <Luke Smith>2022-06-25 11:55:20 -0400
commit1043a8ecfb0493742f75d4696bd9e4033aa6b5b3 (patch)
treee5b439b3d0794031f33e4b8610313c3cf8f36f8c
parentb6e7f0993b14e56703bd1fcc9250ba417bcd0211 (diff)
close #178
-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 5969152..5876d88 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.3-mbstring php7.3-curl php7.3-xml php7.3-sqlite3 php7.3-json
+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
```
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.3-fpm.sock;
+ fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
}
location ~ /\.ht {