From 616c52eff95bfc732c84d7c16809001aa018a15e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=80=81=E5=91=A8=E9=83=A8=E8=90=BD?= Date: Tue, 5 Mar 2024 18:27:12 +0800 Subject: [PATCH] fix small bug --- .gitignore | 2 +- README.md | 2 +- dev/README.md | 6 +++--- docs/docker.md | 10 ---------- 4 files changed, 5 insertions(+), 15 deletions(-) diff --git a/.gitignore b/.gitignore index 6919e197ee..291fd025c0 100644 --- a/.gitignore +++ b/.gitignore @@ -60,7 +60,7 @@ packages/backend/assets/LICENSE packages/megalodon/lib packages/megalodon/.idea -dev/firefish +dev/docker/firefish # blender backups *.blend1 diff --git a/README.md b/README.md index af2d77be1e..db8cf97c4a 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ If you have access to a server that supports one of the sources below, I recomme For install production environment details, read [this document](https://firefish.dev/firefish/firefish/-/blob/develop/docs/install.md). -## Software Dependencies +## Dependencies - At least [NodeJS](https://nodejs.org/en/) v18.16.0 (v20/v21 recommended) - At least [PostgreSQL](https://www.postgresql.org/) v12 (v16 recommended) with [PGroonga](https://pgroonga.github.io/) extension diff --git a/dev/README.md b/dev/README.md index 9da0fc0946..111e6039ea 100644 --- a/dev/README.md +++ b/dev/README.md @@ -16,12 +16,12 @@ We support multiple methods to build a development environment, and you can choo ### Containerized Environment -You can find documentation at [Here](docker/README.md). +You can find documentation at [here](docker/README.md). ### Containerized Database Environment -You can find documentation at [Here](docker-dbonly/README.md). +You can find documentation at [here](docker-dbonly/README.md). ### Manually Make Development Environment -You can find documentation at [Here](manually/README.md). +You can find documentation at [here](manually/README.md). diff --git a/docs/docker.md b/docs/docker.md index 569c6a6c7c..ee224e05aa 100644 --- a/docs/docker.md +++ b/docs/docker.md @@ -73,13 +73,3 @@ example.tld { - Edit `firefish.nginx.conf` to reflect your server properly - Run `sudo ln -s ./firefish.nginx.conf ../sites-enabled/firefish.nginx.conf` - Run `sudo nginx -t` to validate that the config is valid, then restart the NGINX service. - -### Apache - -> **Warning** -> Apache has some known problems with Firefish. Only use it if you have to. - -- Run `sudo cp ./firefish.apache.conf /etc/apache2/sites-available/ && cd /etc/apache2/sites-available/` -- Edit `firefish.apache.conf` to reflect your server properly -- Run `sudo a2ensite firefish.apache` to enable the site -- Run `sudo service apache2 restart` to reload apache2 configuration