16 lines
448 B
Bash
16 lines
448 B
Bash
#####################################--CONFIGURATION FILE--########################################
|
|
|
|
#Client configuration
|
|
client_id=`openssl rand -hex 32`
|
|
client_secret=`openssl rand -hex 32`
|
|
redirect_uri="http://mattermost.company.com:8065/signup/gitlab/complete"
|
|
grant_types="authorization_code"
|
|
scope="api"
|
|
user_id=""
|
|
|
|
#Database configuration
|
|
oauth_user="oauth"
|
|
oauth_db_name="oauth_db"
|
|
oauth_pass="oauth_secure-pass"
|
|
ip="127.0.0.1"
|
|
port="5432" |