fixes #1527 ability to disable auto-detection of url port

This commit is contained in:
plegall 2022-12-29 22:08:27 +01:00
parent 796f726ed1
commit 00480ce0a7
2 changed files with 27 additions and 5 deletions

View file

@ -638,6 +638,12 @@ $conf['picture_url_style'] = 'id';
// tags is not unique, all tags with the same url representation will be shown
$conf['tag_url_style'] = 'id-tag';
// force an explicit port in the url (like ":80" or ":443")
// * 'none' : do not add any port, whatever protocol is detected
// * 'auto' : tries to smartly add a port based on $_SERVER variables
// * 123 : adds ":123" next to url host
$conf['url_port'] = 'none';
// +-----------------------------------------------------------------------+
// | tags |
// +-----------------------------------------------------------------------+