
* migration of resource server from openstackid to its own project * migration of marketplace api * added api tests * added CORS middleware * added SecurityHTTPHeadersWriterMiddleware Change-Id: Ib3d02feeb1e756de73d380238a043a7ac1ec7ecc
46 lines
929 B
Plaintext
46 lines
929 B
Plaintext
APP_ENV=local
|
|
APP_DEBUG=true
|
|
APP_KEY=SomeRandomString
|
|
APP_URL=http://localhost
|
|
APP_OAUTH_2_0_CLIENT_ID=clientid
|
|
APP_OAUTH_2_0_CLIENT_SECRET=clientsecret
|
|
APP_OAUTH_2_0_AUTH_SERVER_BASE_URL=http://localhost
|
|
|
|
DB_HOST=localhost
|
|
DB_DATABASE=homestead
|
|
DB_USERNAME=homestead
|
|
DB_PASSWORD=secret
|
|
|
|
SS_DB_HOST=localhost
|
|
SS_DB_DATABASE=homestead
|
|
SS_DB_USERNAME=homestead
|
|
SS_DB_PASSWORD=secret
|
|
|
|
REDIS_HOST=127.0.0.1
|
|
REDIS_PORT=port
|
|
REDIS_DB=0
|
|
REDIS_PASSWORD=
|
|
|
|
CACHE_DRIVER=file
|
|
|
|
SESSION_DRIVER=redis
|
|
SESSION_COOKIE_DOMAIN=
|
|
SESSION_COOKIE_SECURE=false
|
|
|
|
QUEUE_DRIVER=sync
|
|
|
|
MAIL_DRIVER=smtp
|
|
MAIL_HOST=mailtrap.io
|
|
MAIL_PORT=2525
|
|
MAIL_USERNAME=null
|
|
MAIL_PASSWORD=null
|
|
|
|
CORS_ALLOWED_HEADERS=origin, content-type, accept, authorization, x-requested-with
|
|
CORS_ALLOWED_METHODS=GET, POST, OPTIONS, PUT, DELETE
|
|
CORS_USE_PRE_FLIGHT_CACHING=true
|
|
CORS_MAX_AGE=3200
|
|
CORS_EXPOSED_HEADERS=
|
|
|
|
CURL_TIMEOUT=60
|
|
CURL_ALLOWS_REDIRECT=false
|
|
CURL_VERIFY_SSL_CERT=true |