-
Notifications
You must be signed in to change notification settings - Fork 8
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 #382 from arabcoders/dev
Expose http listen port as environment variable.
- Loading branch information
Showing
8 changed files
with
60 additions
and
39 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
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 |
---|---|---|
@@ -1,21 +1,34 @@ | ||
<?php | ||
|
||
/** | ||
* Last update: 2023-12-12 | ||
* | ||
* servers.yaml backend spec. | ||
* This file defines the backend spec. | ||
* The dot (.) notation means the key is subarray of the parent key. | ||
* the boolean at the end of the key means if the key should be visible in the config:edit/view command. | ||
*/ | ||
return [ | ||
'name', | ||
'type', | ||
'url', | ||
'token', | ||
'uuid', | ||
'user', | ||
'import.enabled', | ||
'import.lastSync', | ||
'export.enabled', | ||
'export.lastSync', | ||
'webhook.import', | ||
'webhook.push', | ||
'webhook.match.user', | ||
'webhook.match.uuid', | ||
'webhook.token', | ||
'options.ignore', | ||
'options.DUMP_PAYLOAD', | ||
'name' => true, | ||
'type' => true, | ||
'url' => true, | ||
'token' => true, | ||
'uuid' => true, | ||
'user' => true, | ||
'export.enabled' => true, | ||
'export.lastSync' => true, | ||
'import.enabled' => true, | ||
'import.lastSync' => true, | ||
'webhook.token' => true, | ||
'webhook.match.user' => true, | ||
'webhook.match.uuid' => true, | ||
'options.ignore' => true, | ||
'options.LIBRARY_SEGMENT' => true, | ||
'options.ADMIN_TOKEN' => false, | ||
'options.DUMP_PAYLOAD' => false, | ||
'options.DEBUG_TRACE' => false, | ||
'options.IMPORT_METADATA_ONLY' => false, | ||
'options.DRY_RUN' => false, | ||
'options.client.timeout' => false, | ||
]; | ||
|
This file was deleted.
Oops, something went wrong.
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,6 +1,6 @@ | ||
{ | ||
http_port 8080 | ||
https_port 8443 | ||
http_port {$HTTP_PORT} | ||
https_port {$HTTPS_PORT} | ||
} | ||
|
||
http:// { | ||
|
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