forked from inex/IXP-Manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.example
121 lines (97 loc) · 4.32 KB
/
.env.example
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
#######################################################################################
#
# IXP Manager V4+ configuration.
#
#
# Run "artisan key:generate" to set the application key:
APP_KEY=
# set this to false in production:
APP_DEBUG=true
# Web address - required for sending emails via CLI scripts, etc.
APP_URL="http://localhost:8088"
# See http://php.net/manual/en/timezones.php for a list of timezones:
APP_TIMEZONE="UTC"
# Laravel log format (strorage/log). See config/log.php
APP_LOG="single"
# MySQL Connection Details
DB_HOST="127.0.0.1"
DB_DATABASE="ixp"
DB_USERNAME="ixp"
DB_PASSWORD="password"
#######################################################################################
# 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="Vagrant City IXP"
IDENTITY_CITY"Dublin"
IDENTITY_COUNTRY"Ireland"
IDENTITY_IXFID=0
IDENTITY_ORGNAME="${IDENTITY_LEGALNAME}"
IDENTITY_NAME="${IDENTITY_LEGALNAME}"
IDENTITY_EMAIL="ixp@example.com"
IDENTITY_TESTEMAIL="${IDENTITY_EMAIL}"
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"
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
# 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: https://github.com/inex/IXP-Manager/wiki/Euro-IX-Member-Data-Export
# Think carefully before making this private. IXPs should be open.
IXP_API_JSONEXPORTSCHEMA_PUBLIC=true
#######################################################################################
# See config/ixp.php
IXP_MULTIIXP_ENABLED=false
IXP_RESELLER_ENABLED=false
IXP_AS112_UI_ACTIVE=true
#######################################################################################
# See config/mail.php
MAIL_HOST=localhost
MAIL_PORT=25
MAIL_PRETEND=false
#######################################################################################
### Graphing - see https://ixp-manager.readthedocs.org/en/latest/features/grapher.html
GRAPHER_BACKENDS="dummy"
#GRAPHER_BACKEND_MRTG_WORKDIR="/tmp"
#GRAPHER_BACKEND_MRTG_LOGDIR="http://stats.example.com/mrtg"
#GRAPHER_BACKEND_SFLOW_ROOT="http://sflow.example.com/sflow"
#GRAPHER_CACHE_ENABLED=true
#######################################################################################
### Skinning: see https://ixp-manager.readthedocs.io/en/latest/features/skinning.html
# VIEW_SKIN="myskin"
# VIEW_SMARTY_SKIN="myskin"
#######################################################################################
# See https://github.com/inex/IXP-Manager/wiki/Password-Hashing before changing:
AUTH_ZF1_PWHASH="bcrypt"
#######################################################################################
# See config/cache.php
CACHE_DRIVER=array
#######################################################################################
# See config/session.php
SESSION_DRIVER=file
#######################################################################################
# see config/doctrine.php
DOCTRINE_PROXY_AUTOGENERATE=true
DOCTRINE_CACHE=array
DOCTRINE_CACHE_NAMESPACE=IXPMANAGERNAMESPACE