This Useful Script creates a really generic NGINX+PHP+MYSQL server from a Docker image. You don't know docker to use this solution.
The server will be recognize the domain and select dynamically the folder where this domain will be serve pages.
The default ROOT for the server is:
$HOME/.usdocker/data/lemp/sites
npm install -g @usdocker/usdocker # Install it first
npm install -g @usdocker/mysql @usdocker/lemp
usdocker -r # Update USDocker databaseusdocker mysql up # installed as dependency
usdocker lemp upCheck the status
usdocker lemp statusDown the server
usdocker lemp downIf you wanna serve pages for domain "example.com" you just have to create a folder:
usdocker lemp domain-add example.comAnd you will serve pages for this domain immediatelly. This script tries to find the follow directories to server web pages:
- web
- httpdocs
- public
If found, the directory for the web pages will be, respectively:
$HOME/.usdocker/data/lemp/sites/example.com/web
or
$HOME/.usdocker/data/lemp/sites/example.com/httpdocs
or
$HOME/.usdocker/data/lemp/sites/example.com/public
If not found will serve the root directory directly
Optionally, you can create a domain with a pre-defined content existing in a tar.gz file.
To do this execute:
usdocker lemp domain-add example.com /path/to/file.tar.gzusdocker lemp domain-del example.comusdocker lemp domain-listusdocker lemp export [domain] [dest folder]Q: I am getting no error but the service is not started OR I am getting the error: "docker error userland proxy: Bind for 0.0.0.0:80: unexpected error Permission denied. windows"
A: This error occured because the port 80 is already binded. Try to Shutdown the Skype and/or stop the "World Wide Web Service" (net stop http)
You can setup the variables by using:
usdocker lemp --set variable=valueDefault values
- image: "byjg/php:7-fpm-nginx",
- folder: "$HOME/.usdocker/data/lemp",
- port: 80,
- sslPort: 443,
- applicationEnv: "dev" (will set APPLICATION_ENV environment variable to PHP)
- phpHandler: "/app.php" (you can change to another or =404 for ignore phpHandler)
- enableCors: 'true'
- corsAllowOrigin: '*';
- nginxDebugHeader: 'true'
- phpDebugHeader: 'true'