From 155a38d45464c0f8a1c344032047d4407596f088 Mon Sep 17 00:00:00 2001 From: bread Date: Tue, 8 Oct 2024 19:19:01 +0000 Subject: [PATCH] things I missed --- docs/nginx.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/nginx.md b/docs/nginx.md index 71bd878..f4366ad 100644 --- a/docs/nginx.md +++ b/docs/nginx.md @@ -14,7 +14,7 @@ * On Debian-based, run `apt update`, then `apt upgrade`. 3. Install the following dependencies: * `git`: So you can clone this repository. - * `nginx`: So you can run Nginx. If using a non-systemd distribution, go to + * `nginx`: So you can run Nginx. * `php-fpm`: This is what allows Nginx to run *(and show)* PHP files. * `php-imagick`, `imagemagick`: Image manipulation. * `php-apcu`: Caching module. @@ -22,9 +22,9 @@ * `php-mbstring`: String utils. * `certbot`, `certbot-nginx`: ACME client. Used to create SSL certificates. * In Arch-based distributions: - * `pacman -S nginx certbot php-imagick imagemagick curl php-apcu git` + * `pacman -S nginx certbot php-imagick certbot-nginx imagemagick curl php-apcu git` * In Debian-based distributions: - * `apt install php-mbstring nginx certbot php-imagick imagemagick php-curl curl php-apcu git` + * `apt install php-mbstring nginx certbot-nginx certbot php-imagick imagemagick php-curl curl php-apcu git`
@@ -183,7 +183,7 @@

Other important things

1. Configuration guide: Things to do after setup. -2. Apache2 guide: Fallback to this if you couldn't get Nginx to work, or you don't know something. +2. Apache2 guide: Fallback to this if you couldn't get something to work, or you don't know something.

Known issues

1. `php-apcu` not working in Artix[^1], this might be because of it being a systemd daemon, but the binary isn't present. This might apply to Arch Linux as well, since it is from where the package was gotten. Read more in the issue.