-
Notifications
You must be signed in to change notification settings - Fork 165
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tidy up config options, better documentation of same
- Loading branch information
Showing
10 changed files
with
46 additions
and
58 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 |
---|---|---|
|
@@ -35,42 +35,52 @@ DB_USERNAME="ixp" | |
DB_PASSWORD="password" | ||
|
||
####################################################################################### | ||
# Identity. Used throughout IXP Manager in various ways. | ||
### Identity | ||
# | ||
# Used throughout IXP Manager in various ways. | ||
# | ||
# This has grown organically and we intend to clean this up in a coming release and | ||
# documenting where and how each one is spceifically used. | ||
|
||
# Shown in title bar of web portal: | ||
IDENTITY_SITENAME="Vagrant IXP Manager" | ||
|
||
IDENTITY_LEGALNAME="Vagrant City IXP" | ||
IDENTITY_CITY="Dublin" | ||
IDENTITY_COUNTRY="IE" | ||
IDENTITY_ORGNAME="${IDENTITY_LEGALNAME}" | ||
|
||
# As well as uses in other places, emails are sent from the following name/email: | ||
IDENTITY_NAME="${IDENTITY_LEGALNAME}" | ||
IDENTITY_EMAIL="[email protected]" | ||
|
||
IDENTITY_TESTEMAIL="${IDENTITY_EMAIL}" | ||
|
||
# Used on some traffic graphs: | ||
IDENTITY_WATERMARK="Vagrant City IXP" | ||
|
||
IDENTITY_SUPPORT_EMAIL="${IDENTITY_EMAIL}" | ||
IDENTITY_SUPPORT_PHONE="+1 111 555 5555" | ||
IDENTITY_SUPPORT_HOURS="24x7" | ||
|
||
IDENTITY_BILLING_EMAIL="${IDENTITY_EMAIL}" | ||
IDENTITY_BILLING_PHONE="+1 111 555 5555" | ||
IDENTITY_BILLING_HOURS="24x7" | ||
IDENTITY_AUTOBOT_NAME="${IDENTITY_NAME} Autobot" | ||
IDENTITY_AUTOBOT_EMAIL="${IDENTITY_EMAIL}" | ||
IDENTITY_MAILER_NAME="${IDENTITY_NAME} Autobot" | ||
IDENTITY_MAILER_EMAIL="${IDENTITY_EMAIL}" | ||
IDENTITY_SITENAME="Vagrant IXP Manager" | ||
|
||
# Web address of your IXP's website. Used in IX-F Export schema, etc. | ||
IDENTITY_CORPORATE_URL="http://www.example.com/" | ||
|
||
IDENTITY_LOGO="/srv/ixpmanager/public/images/ixp-manager.png" | ||
IDENTITY_BIGLOGO="http://www.ixpmanager.org/images/logos/ixp-manager.png" | ||
IDENTITY_BIGLOGO_OFFSET="offset4" | ||
IDENTITY_SWITCH_DOMAIN="example.com" | ||
|
||
# For some actions (e.g. peering matrix) we need to know what VLAN to show by default. | ||
# This is the vlan.id database entry (i.e. not the VLAN number/tag!) | ||
IDENTITY_DEFAULT_VLAN=1 | ||
|
||
|
||
####################################################################################### | ||
# Features | ||
### Features | ||
# | ||
|
||
# See: http://docs.ixpmanager.org/features/reseller/ | ||
|
@@ -81,10 +91,18 @@ IXP_AS112_UI_ACTIVE=false | |
|
||
|
||
####################################################################################### | ||
# See config/mail.php | ||
MAIL_HOST=localhost | ||
MAIL_PORT=25 | ||
MAIL_ENCRYPTION="" | ||
### Email Settings. | ||
# | ||
# We use Laravel's mail system which in turn uses SwiftMailer. | ||
# | ||
# See config/mail.php abd https://laravel.com/docs/5.5/mail | ||
# | ||
# The default setting is 'sendmail' which tries to use your local systems mail client. | ||
# | ||
# MAIL_DRIVER="sendmail" | ||
# MAIL_HOST="localhost" | ||
# MAIL_PORT=25 | ||
# MAIL_ENCRYPTION="tls" | ||
|
||
|
||
####################################################################################### | ||
|
@@ -111,7 +129,10 @@ GRAPHER_BACKENDS="dummy" | |
|
||
|
||
####################################################################################### | ||
### Skinning: see https://ixp-manager.readthedocs.io/en/latest/features/skinning.html | ||
### Skinning | ||
# | ||
# See https://ixp-manager.readthedocs.io/en/latest/features/skinning.html | ||
# | ||
# VIEW_SKIN="myskin" | ||
# VIEW_SMARTY_SKIN="myskin" | ||
|
||
|
@@ -127,7 +148,7 @@ SESSION_DRIVER=file | |
|
||
####################################################################################### | ||
# see config/doctrine.php | ||
DOCTRINE_PROXY_AUTOGENERATE=true | ||
DOCTRINE_PROXY_AUTOGENERATE=false | ||
DOCTRINE_CACHE=array | ||
DOCTRINE_CACHE_NAMESPACE=IXPMANAGERNAMESPACE | ||
|
||
|
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
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