examples - edit basic PHP

This commit is contained in:
bunkerity 2021-06-24 21:32:49 +02:00
parent bebe89afb0
commit 0114c7b09f
No known key found for this signature in database
GPG Key ID: 3D80806F12602A7C
3 changed files with 8 additions and 3 deletions

View File

@ -15,6 +15,11 @@ $ docker-compose up
## Linux
You will need to configure your php-fpm service to listen on localhost with the following directive :
```conf
listen = 127.0.0.1:9000
```
```shell
$ cp variables.env /opt/bunkerized-nginx/variables.env
$ cp web-files/* /opt/bunkerized-nginx/www

View File

@ -6,5 +6,5 @@ REDIRECT_HTTP_TO_HTTPS=yes
DISABLE_DEFAULT_SERVER=yes
USE_CLIENT_CACHE=yes
USE_GZIP=yes
REMOTE_PHP=myphp
REMOTE_PHP_PATH=/app
REMOTE_PHP=localhost
REMOTE_PHP_PATH=/opt/bunkerized-nginx/www

View File

@ -1,4 +1,4 @@
#!/bin/sh
apk add py3-pip bash
pip3 install docker flask
pip3 install docker flask flask-login