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 1
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 #264 from jdeathe/centos-6-develop
Release changes for 1.13.3
- Loading branch information
Showing
16 changed files
with
264 additions
and
180 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,11 @@ | ||
<Location "/server-status"> | ||
SetHandler server-status | ||
<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> |
Oops, something went wrong.