Sometimes, you can have an internal server error (500) but you don't have any information in logs on it.
To determine and resolve this type of problem, the simplier way is to display directly the error on screen.
Be careful, this solution is not secured ! It can be used only for debuging.
A new version of EnvDev project is now available in 2.3 version.
Changelog :
[2.3] - 2018-07-14
Changed
- Change default version of PHP in
.env.dist
file from 7.2 FPM alpine to 7.2 FPM - Change License date
- Update README
- Move PHP FileMatch from Apache VHost configuration to generic Apach...
A new version of EnvDev project is now available in 2.1 version.
Changelog :
[2.1] - 2018-04-05
Added
- Share git config & ssh keys
- Add
envdev
vhost configuration for Apache & Nginx - Rename
projects
directory tohome
- Add
`.env.dist
configuration example - Add Makefile
- Use current...
A new version of EnvDev project is now available in 2.0 version.
This version is a complete refactoring of the project to rationnalize the stack and use Alpine version of container to reduce the image size.
Your projects can be with several PHP version from 5.6 to 7.2. A cache stack had been a...
The access restriction by IP is a main feature of web server like Apache. You can specify easily, whom have access to a page and whom haven't, from the IP.
How to block / allow an IP in .htaccess ?
Apache 2.4
Require all granted
Require not ip 192.168.1.2
Require not i...