Skip to content

Commit 0048ec8

Browse files
Initial commit
0 parents  commit 0048ec8

25 files changed

+2092
-0
lines changed

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# PhpStorm IDE workspace file.
2+
.idea/
3+
4+
# Personal use configuration files.
5+
personal-config.ini
6+
personal-ssl-config.bat

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
6+
7+
## [Unreleased]
8+
9+
## [1.0.0] - 2020-06-14
10+
11+
### Added
12+
- Initial commit.

LICENSE.txt

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2018 Matthew Rath
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 320 additions & 0 deletions
Large diffs are not rendered by default.

sample-config.ini

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
;--------------------------;
2+
; WampServer Configuration ;
3+
;--------------------------;
4+
5+
; Your WampServer installation path.
6+
wampServerInstallPath=C:\wamp64
7+
8+
; The parent path where your SSL certificates, keys, vhost and log files will be stored.
9+
wampServerExtensionsPath=C:\wamp64 - ssl auto config
10+
11+
;-------------------------;
12+
; SSL Certificate Details ;
13+
;-------------------------;
14+
15+
; These (common) ssl certificate details are used to build each developments domain name certificate.
16+
;
17+
; sslCity: The full name of a city.
18+
; sslState: The full name of a state.
19+
; sslCountry: The two letter ISO code of a country.
20+
; sslOrganisation: The organisation name.
21+
; sslOrganisationUnit: The unit name of a organisation.
22+
; sslEmail: Use the 'local' part of an email address followed by the @ (at) symbol only.
23+
; IMPORTANT: Do not include the 'domain' part of the email address as the hostname will be auto-appended.
24+
; sslDays: The number of days you would like the certificates to remain valid for.
25+
26+
sslCity=Brisbane
27+
sslState=Queensland
28+
sslCountry=AU
29+
sslOrganization=Business
30+
sslOrganizationUnit=IT Department
31+
sslEmail=webmaster@
32+
sslDays=3650
33+
34+
;---------------------;
35+
; Development Domains ;
36+
;---------------------;
37+
38+
[Website 1]
39+
hostname=www.dev.website-1.com.au
40+
documentRoot=C:/wamp64 - domains/website-1/public_html
41+
42+
[Website 2]
43+
hostname=www.dev.website-2.com.au
44+
documentRoot=C:/wamp64 - domains/website-2/public_html

0 commit comments

Comments
 (0)