forked from bluntelk/IXP-Manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.docker
143 lines (106 loc) · 4.71 KB
/
.env.docker
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
#######################################################################################
#
# IXP Manager V4+ configuration.
#
#
# Run "artisan key:generate" to set the application key:
APP_KEY="base64:3petWB2WTnf8WtPrK1i8KYwLWxLGbubQ1Yyu3LBUZPI="
# Set this to false in production (but leave it as true during installation).
APP_DEBUG=true
APP_ENV="development"
# Web address where IXP Manager is accessed. This is a **required** setting. It is
# currently used for generating all URLs within IXP Manager (action, assets, etc.).
# It is also used / required for sending emails via CLI scripts.
#
APP_URL="http://127.0.0.1:8880"
# See http://php.net/manual/en/timezones.php for a list of timezones:
APP_TIMEZONE="UTC"
# Laravel log format (storage/log). See config/log.php and
# https://laravel.com/docs/5.4/errors
APP_LOG="single"
# info by default, one of: debug, info, notice, warning, error, critical, alert, emergency.
APP_LOG_LEVEL=debug
# MySQL Connection Details
DB_CONNECTION="mysql"
DB_HOST="ixpmanager-mysql"
DB_DATABASE="ixpmanager"
DB_USERNAME="ixpmanager"
DB_PASSWORD="ixpmanager"
#######################################################################################
# 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.
IDENTITY_LEGALNAME="Docker City IXP"
IDENTITY_CITY="Dublin"
IDENTITY_COUNTRY="IE"
IDENTITY_ORGNAME="${IDENTITY_LEGALNAME}"
IDENTITY_NAME="${IDENTITY_LEGALNAME}"
IDENTITY_EMAIL="[email protected]"
IDENTITY_TESTEMAIL="${IDENTITY_EMAIL}"
IDENTITY_WATERMARK="Docker 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_SITENAME="Docker IXP Manager"
IDENTITY_CORPORATE_URL="http://www.example.com/"
IDENTITY_BIGLOGO="//www.ixpmanager.org/images/logos/ixp-manager.png"
IDENTITY_BIGLOGO_OFFSET="offset4"
# 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
# if you want to FORCE a URL (e.g. running behind a proxy) - set the following.
# If in doubt, leave it commented out and IXP Manager will 'do the right thing'
# IDENTITY_FORCE_URL="https://ixp-managerexample.com"
# if you want to FORCE a schema (http/https) (e.g. running behind a proxy) - set the following.
# If in doubt, leave it commented out and IXP Manager will 'do the right thing'
# IDENTITY_FORCE_SCHEMA="https"
#######################################################################################
# See config/ixp.php
IXP_MULTIIXP_ENABLED=false
IXP_RESELLER_ENABLED=true
IXP_AS112_UI_ACTIVE=true
#######################################################################################
# See config/mail.php.
#
# Docker uses a mailcatcher container. View emails at: http://localhost:1080/
MAIL_HOST=172.30.201.11
MAIL_PORT=1025
#######################################################################################
### Graphing - see https://ixp-manager.readthedocs.org/en/latest/features/grapher.html
# For Docker MRTG testing, change this to: "mrtg|dummy".
GRAPHER_BACKENDS="dummy"
GRAPHER_BACKEND_MRTG_WORKDIR="/mrtg_data"
GRAPHER_BACKEND_MRTG_LOGDIR="/srv/mrtg"
#GRAPHER_BACKEND_SFLOW_ENABLED=true
#GRAPHER_BACKEND_SFLOW_ROOT="http://sflow.example.com/sflow"
GRAPHER_CACHE_ENABLED=false
# Smokeping - see: http://docs.ixpmanager.org/features/skinning/
#GRAPHER_SMOKEPING_URL="http://www.example.com/smokeping"
#######################################################################################
### Skinning: see https://ixp-manager.readthedocs.io/en/latest/features/skinning.html
VIEW_SKIN="docker"
#######################################################################################
# See config/cache.php
CACHE_DRIVER=array
#######################################################################################
# See config/session.php
SESSION_LIFETIME=120
SESSION_DRIVER=file
#######################################################################################
# see config/doctrine.php
DOCTRINE_PROXY_AUTOGENERATE=true
DOCTRINE_CACHE=array
DOCTRINE_CACHE_NAMESPACE=IXPMANAGERNAMESPACE
IXP_FE_FRONTEND_DISABLED_LOOKING_GLASS=false
IXP_FE_BETA_CORE_BUNDLES=true
# For PHP xdebug, put in the IP address of your host
# DOCKER_XDEBUG_CONFIG_REMOTE_HOST=192.0.2.67
#######################################################################################
# Utility paths
# See: https://docs.ixpmanager.org/features/irrdb/
IXP_IRRDB_BGPQ3_PATH=/usr/bin/bgpq3
IXP_RPKI_RTR1_HOST=172.30.201.31
IXP_RPKI_RTR1_PORT=3323