-
Notifications
You must be signed in to change notification settings - Fork 10
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 #92 from kellerkinderDE/noticket/docChanges
doc changes/updates
- Loading branch information
Showing
9 changed files
with
132 additions
and
123 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,5 @@ | |
# Devenv | ||
/.devenv* | ||
/devenv.lock | ||
/examples/**/.devenv* | ||
/examples/**/.direnv |
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 |
---|---|---|
@@ -0,0 +1,119 @@ | ||
# kellerkinder.httpPort | ||
Sets the http port for caddy. | ||
|
||
_This has to be an int_ | ||
|
||
*_Example_* | ||
``` | ||
kellerkinder.httpPort = 8080; | ||
``` | ||
|
||
# kellerkinder.httpsPort | ||
Sets the https port for caddy. | ||
|
||
_This has to be an int_ | ||
|
||
*_Example_* | ||
``` | ||
kellerkinder.httpsPort = 8443; | ||
``` | ||
|
||
# kellerkinder.mysqlPort | ||
Sets the MySQL port. | ||
|
||
_This has to be an int_ | ||
|
||
*_Example_* | ||
``` | ||
kellerkinder.mysqlPort = 3307; | ||
``` | ||
|
||
# kellerkinder.adminerPort | ||
Sets the Adminer port. | ||
|
||
_This has to be an int_ | ||
|
||
*_Example_* | ||
``` | ||
kellerkinder.adminerPort = 8010; | ||
``` | ||
|
||
# kellerkinder.mailhogApiPort | ||
Sets the Mailhog API port. | ||
|
||
_This has to be an int_ | ||
|
||
*_Example_* | ||
``` | ||
kellerkinder.mailhogApiPort = 8025; | ||
``` | ||
|
||
# kellerkinder.mailhogSmtpPort | ||
Sets the Mailhog SMTP port. | ||
|
||
_This has to be an int_ | ||
|
||
*_Example_* | ||
``` | ||
kellerkinder.mailhogSmtpPort = 1025; | ||
``` | ||
|
||
# kellerkinder.mailhogUiPort | ||
Sets the Mailhog Web UI port. | ||
|
||
_This has to be an int_ | ||
|
||
*_Example_* | ||
``` | ||
kellerkinder.mailhogUiPort = 8025; | ||
``` | ||
|
||
# kellerkinder.redisPort | ||
Sets the Redis port. | ||
|
||
_This has to be an int_ | ||
|
||
*_Example_* | ||
``` | ||
kellerkinder.redisPort = 6379; | ||
``` | ||
|
||
# kellerkinder.elasticsearchPort | ||
Sets the Elasticsearch/OpenSearch port. | ||
|
||
_This has to be an int_ | ||
|
||
*_Example_* | ||
``` | ||
kellerkinder.elasticsearchPort = 9200; | ||
``` | ||
|
||
# kellerkinder.elasticsearchTcpPort | ||
Sets the Elasticsearch/OpenSearch TCP port. | ||
|
||
_This has to be an int_ | ||
|
||
*_Example_* | ||
``` | ||
kellerkinder.elasticsearchTcpPort = 9300; | ||
``` | ||
|
||
# kellerkinder.rabbitMqPort | ||
Sets the RabbitMQ port. | ||
|
||
_This has to be an int_ | ||
|
||
*_Example_* | ||
``` | ||
kellerkinder.rabbitMqPort = 5672; | ||
``` | ||
|
||
# kellerkinder.rabbitMqManagementPluginPort | ||
Sets the RabbitMQ management plugin port. | ||
|
||
_This has to be an int_ | ||
|
||
*_Example_* | ||
``` | ||
kellerkinder.rabbitMqManagementPluginPort = 15672; | ||
``` |
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