This repository has been archived by the owner on Jul 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #806 from jdeathe/centos-7-httpd24u-php72u-develop
Release changes for 3.3.3
- Loading branch information
Showing
17 changed files
with
286 additions
and
208 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
.env | ||
.env.example | ||
.git | ||
.gitignore | ||
dist | ||
images | ||
test | ||
docker-compose.yml | ||
LICENSE | ||
README-short.txt | ||
*.md | ||
/.env | ||
/.env.example | ||
/.git | ||
/.gitignore | ||
/dist | ||
/docs | ||
/images | ||
/test | ||
/docker-compose.yml | ||
/LICENSE | ||
/README-short.txt | ||
/*.md | ||
!README.md | ||
**/*.mk | ||
**/Makefile | ||
**/Makefile |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
.env | ||
packages | ||
dist | ||
/.env | ||
/dist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Testing | ||
|
||
## Functional | ||
|
||
The functional test cases are written in [shpec](https://github.com/rylnd/shpec). | ||
|
||
To run the tests use the `test` Makefile target after building. | ||
|
||
> *Note:* You might need to run via sudo if your environment requires root privileges to run docker. | ||
``` | ||
$ make build test | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<IfModule proxy_module> | ||
<IfModule proxy_fcgi_module> | ||
<Location "/status"> | ||
SetHandler "proxy:unix:/run/php-fpm/${APACHE_RUN_USER}.sock|fcgi://localhost" | ||
<IfVersion < 2.4> | ||
Order deny,allow | ||
Deny from all | ||
Allow from localhost 127.0.0.1 | ||
</IfVersion> | ||
<IfVersion >= 2.4> | ||
Require host localhost 127.0.0.1 | ||
</IfVersion> | ||
</Location> | ||
</IfModule> | ||
</IfModule> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,11 @@ | ||
<IfVersion < 2.4> | ||
<Location "/server-status"> | ||
SetHandler server-status | ||
<Location "/server-status"> | ||
SetHandler server-status | ||
<IfVersion < 2.4> | ||
Order deny,allow | ||
Deny from all | ||
Allow from localhost 127.0.0.1 | ||
</Location> | ||
<Location "/status"> | ||
SetHandler "proxy:unix:/run/php-fpm/${APACHE_RUN_USER}.sock|fcgi://localhost" | ||
Order deny,allow | ||
Deny from all | ||
Allow from localhost 127.0.0.1 | ||
</Location> | ||
</IfVersion> | ||
|
||
<IfVersion >= 2.4> | ||
<Location "/server-status"> | ||
SetHandler server-status | ||
Require host localhost 127.0.0.1 | ||
</Location> | ||
<Location "/status"> | ||
SetHandler "proxy:unix:/run/php-fpm/${APACHE_RUN_USER}.sock|fcgi://localhost" | ||
</IfVersion> | ||
<IfVersion >= 2.4> | ||
Require host localhost 127.0.0.1 | ||
</Location> | ||
</IfVersion> | ||
</IfVersion> | ||
</Location> |
Oops, something went wrong.