mirror of
https://github.com/moparisthebest/wallabag
synced 2024-11-27 03:12:21 -05:00
Merge pull request #848 from 11mariom/dev
Add support for custom http port
This commit is contained in:
commit
8fd0512a3c
@ -51,6 +51,7 @@ final class Tools
|
||||
|
||||
$serverport = (!isset($_SERVER["SERVER_PORT"])
|
||||
|| $_SERVER["SERVER_PORT"] == '80'
|
||||
|| $_SERVER["SERVER_PORT"] == HTTP_PORT
|
||||
|| ($https && $_SERVER["SERVER_PORT"] == '443')
|
||||
|| ($https && $_SERVER["SERVER_PORT"]==SSL_PORT) //Custom HTTPS port detection
|
||||
? '' : ':' . $_SERVER["SERVER_PORT"]);
|
||||
|
@ -24,6 +24,8 @@
|
||||
#################################################################################
|
||||
# Do not trespass unless you know what you are doing
|
||||
#################################################################################
|
||||
// Change this if http is running on nonstandard port - i.e is behind cache proxy
|
||||
@define ('HTTP_PORT', 80);
|
||||
|
||||
// Change this if not using the standart port for SSL - i.e you server is behind sslh
|
||||
@define ('SSL_PORT', 443);
|
||||
|
Loading…
Reference in New Issue
Block a user