####################################################################################### # # IXP Manager V4+ configuration. # # # Run 'artisan key:generate' to set the application key: APP_KEY=base64:lG8gZQ0rcmXUc7o2nlrVKnbW/p67GmvnoGYFv7t/f+w= # 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='localhost' DB_DATABASE='ixp' DB_USERNAME='ixp' DB_PASSWORD='' USERNAME=admin USEREMAIL=noc@ricta.org.rw IXPM_ADMIN_PW='$( openssl rand -base64 12 )' ADMIN_PW_SALT='$( openssl rand -base64 16 )' HASH_PW=$( php -r 'echo escapeshellarg( crypt( '${IXPM_ADMIN_PW}', sprintf( '\$2a\$%02d\$%s', 10, substr( '${ADMIN_PW_SALT}', 0, 22 ) ) ) );' ) echo Your password is: $IXPM_ADMIN_PW ####################################################################################### # 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='Rinex' IDENTITY_CITY'Kigali' IDENTITY_COUNTRY'Rwanda' IDENTITY_IXFID=0 IDENTITY_ORGNAME='${IDENTITY_LEGALNAME}' IDENTITY_NAME='${IDENTITY_LEGALNAME}' IDENTITY_EMAIL='noc@ricta.org.rw' IDENTITY_TESTEMAIL='${IDENTITY_EMAIL}' IDENTITY_WATERMARK='RINEX' IDENTITY_SUPPORT_EMAIL='${IDENTITY_EMAIL}' IDENTITY_SUPPORT_PHONE='+2507851151371' IDENTITY_SUPPORT_HOURS='24x7' IDENTITY_BILLING_EMAIL='${IDENTITY_EMAIL}' IDENTITY_BILLING_PHONE='+2507851151371' 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='rinex' IDENTITY_CORPORATE_URL='http://www.rinex.org.rw/' 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='rinex.org.rw' # 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