-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
95d3396
commit 15fe0b5
Showing
6 changed files
with
44 additions
and
21 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 |
---|---|---|
|
@@ -34,7 +34,7 @@ | |
# Note: Configurations that use IPv6 but not IPv4-mapped addresses need two | ||
# Listen directives: "Listen [::]:443" and "Listen 0.0.0.0:443" | ||
# | ||
Listen "${PORT_SSL}" | ||
Listen "${HTTPS_PORT}" | ||
|
||
## | ||
## SSL Global Context | ||
|
@@ -60,11 +60,11 @@ SSLPassPhraseDialog builtin | |
## SSL Virtual Host Context | ||
## | ||
|
||
<VirtualHost _default_:${PORT_SSL}> | ||
<VirtualHost _default_:${HTTPS_PORT}> | ||
|
||
# General setup for the virtual host | ||
DocumentRoot "${SRVROOT}/htdocs" | ||
ServerName "${SRVIP}:${PORT_SSL}" | ||
ServerName "${SRVIP}:${HTTPS_PORT}" | ||
ServerAdmin [email protected] | ||
ErrorLog "logs/error.log" | ||
# TransferLog "logs/access.log" | ||
|
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 |
---|---|---|
|
@@ -38,8 +38,8 @@ | |
|
||
Define SRVROOT "C:/DTV/TVRemotePlus" | ||
Define SRVIP "192.168.1.11" | ||
Define PORT "8000" | ||
Define PORT_SSL "8100" | ||
Define HTTP_PORT "8000" | ||
Define HTTPS_PORT "8100" | ||
|
||
ServerRoot "${SRVROOT}/bin/Apache" | ||
|
||
|
@@ -68,7 +68,7 @@ Define ENABLE_TLS13 "Yes" | |
# prevent Apache from glomming onto all bound IP addresses. | ||
# | ||
#Listen 12.34.56.78:80 | ||
Listen "${PORT}" | ||
Listen "${HTTP_PORT}" | ||
|
||
# | ||
# Dynamic Shared Object (DSO) Support | ||
|
@@ -154,7 +154,7 @@ ServerAdmin [email protected] | |
# | ||
# If your host doesn't have a registered DNS name, enter its IP address here. | ||
# | ||
ServerName "${SRVIP}:${PORT}" | ||
ServerName "${SRVIP}:${HTTP_PORT}" | ||
|
||
# | ||
# Deny access to the entirety of your server's filesystem. You must | ||
|
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 @@ | ||
|
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 +1 @@ | ||
v1.4.1 | ||
v1.4.2 |
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