From a444f9418f38315c5258b8be6d48eb5807cdb16f Mon Sep 17 00:00:00 2001 From: Rouji Date: Sat, 12 Mar 2022 21:00:03 +0100 Subject: [PATCH] add nginx config example nicked from the docker container --- README.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/README.md b/README.md index 33fc1a3..ee2bbf3 100644 --- a/README.md +++ b/README.md @@ -41,6 +41,26 @@ Pretty straight forward, I use something like this: ``` +## Nginx +``` +root /path/to/webroot; +index index.php; + +location ~ /(.+)$ { + root /path/to/webroot/files; +} + +location = / { + include fastcgi_params; + fastcgi_param HTTP_PROXY ""; + fastcgi_intercept_errors On; + fastcgi_param SCRIPT_NAME index.php; + fastcgi_param SCRIPT_FILENAME /path/to/webroot/index.php; + fastcgi_param QUERY_STRING $query_string; + fastcgi_pass 127.0.0.1:9000; +} +``` + # Purging Old Files To check for any files that exceed their max age and delete them, you need to call index.php with the argument "purge" ```bash