1
0
mirror of https://github.com/Rouji/single_php_filehost.git synced 2025-04-04 16:39:34 +00:00

add nginx config example

nicked from the docker container
This commit is contained in:
Rouji 2022-03-12 21:00:03 +01:00
parent 5747e1dbd7
commit a444f9418f

View File

@ -41,6 +41,26 @@ Pretty straight forward, I use something like this:
</Directory> </Directory>
``` ```
## 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 # 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" To check for any files that exceed their max age and delete them, you need to call index.php with the argument "purge"
```bash ```bash