Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
envsetup
Manage
Activity
Members
Plan
Redmine
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mediaserver
envsetup
Commits
4f284002
Commit
4f284002
authored
5 years ago
by
Nicolas KAROLAK
Browse files
Options
Downloads
Patches
Plain Diff
mediaimport & deprecated conf
parent
a6c0bad2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
deprecated-conf.sh
+26
-0
26 additions, 0 deletions
deprecated-conf.sh
global-conf.sh
+9
-20
9 additions, 20 deletions
global-conf.sh
with
35 additions
and
20 deletions
deprecated-conf.sh
0 → 100644
+
26
−
0
View file @
4f284002
#!/bin/bash
# DO NOT EDIT THIS FILE!
# Put your local configuration in conf.sh
# -- Database --
DB_MYSQL_ROOT_PWD
=
# -- Backup server specific (burp) --
BURP_STATUS_IP
=
BURPUI_PASSWORD
=
'1234'
# FQDN
BURP_SERVER
=
''
BURP_MAIL_DEST
=
'sysadmin@ubicast.eu'
# default mediaserver
BURP_CLIENT_NAME
=
BURP_CLIENT_MAIL_DEST
=
'sysadmin@ubicast.eu'
# -- FTP --
# move uploaded files into hotfolder
# login:pass CSV separated
#FTP_INCOMING_USERS='ftpuser1:ftppass1,ftpuser2:ftppass2'
FTP_INCOMING_USERS
=
# -- HOTFOLDER --
# csv-separated
HOTFOLDERS
=
'/home/ftp/storage/hotfolder'
This diff is collapsed.
Click to expand it.
global-conf.sh
+
9
−
20
View file @
4f284002
...
...
@@ -76,7 +76,6 @@ DB_HOST='127.0.0.1'
DB_PORT
=
'5432'
# if no password is set, it will not be changed or set
DB_PG_ROOT_PWD
=
DB_MYSQL_ROOT_PWD
=
# -- Celerity --
CELERITY_SIGNING_KEY
=
'test'
...
...
@@ -101,16 +100,6 @@ PROXY_HTTPS=
# PROXY_EXCLUDE is used in no_proxy env (a comma separated list of domains)
PROXY_EXCLUDE
=
# -- Backup server specific (burp) --
BURP_STATUS_IP
=
BURPUI_PASSWORD
=
'1234'
# FQDN
BURP_SERVER
=
''
BURP_MAIL_DEST
=
'sysadmin@ubicast.eu'
# default mediaserver
BURP_CLIENT_NAME
=
BURP_CLIENT_MAIL_DEST
=
'sysadmin@ubicast.eu'
# -- Fail2ban specific settings --
FAIL2BAN_ENABLED
=
'1'
FAIL2BAN_SEND_EMAIL
=
'0'
...
...
@@ -123,15 +112,9 @@ BACKUP_SERVER=''
# CSV separated
LOCAL_BACKUP_FOLDERS
=
''
# -- FTP --
# move uploaded files into hotfolder
# login:pass CSV separated
#FTP_INCOMING_USERS='ftpuser1:ftppass1,ftpuser2:ftppass2'
FTP_INCOMING_USERS
=
# -- HOTFOLDER --
# csv-separated
HOTFOLDERS
=
'/home/ftp/storage/hotfolder'
# -- MediaImport --
MEDIAIMPORT_USER
=
MEDIAIMPORT_PASSWD
=
# -- Tester config --
# separate values with commas
...
...
@@ -156,6 +139,12 @@ GREEN='\033[0;32m'
RED
=
'\033[0;31m'
NC
=
'\033[0;0m'
# Deprecated configuration kept for backward compatibility
# --------------------------------------------------------
if
[
-f
"/root/envsetup/deprecated-conf.sh"
]
;
then
source
"/root/envsetup/deprecated-conf.sh"
fi
# Upstream configuration override
# -------------------------------
# (file generated by Panel / Skyreach)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment