-
Notifications
You must be signed in to change notification settings - Fork 16
/
env.yourls
60 lines (43 loc) · 1.73 KB
/
env.yourls
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
# settings for yourls container
# *****************************************************************************
# Limitations:
# - All variables should not contains ('=', equal sign).
# - All variables should not contains (' ', space).
# - All variables should not contains ('#', number sign).
# *****************************************************************************
# THE VALUE HERE SHOULD BE EXACTLY THE SAME AS `MYSQL_USER` in `env.mysql`
YOURLS_DB_USER=yourls
# THE VALUE HERE SHOULD BE EXACTLY THE SAME AS `MYSQL_PASSWORD` in `env.mysql`
YOURLS_DB_PASS=mysecretpassword
# THE VALUE HERE SHOULD BE EXACTLY THE SAME AS `MYSQL_DATABASE` in `env.mysql`
YOURLS_DB_NAME=yourls
# PREFIX OF MYSQL DB TABLES
YOURLS_DB_PREFIX=yourls_
# NEVER CHANGE THIS LINE
YOURLS_DB_HOST=mysql
# change it to the real http://<FQDN> **without ending backslashes**
YOURLS_SITE=http://localhost
# GENERATE ONE WITH RANDOM
YOURLS_COOKIEKEY=63d8cd986cded909158fcc00
# Upstream YOURLS have hard-coded username/password pair.
# - https://github.com/YOURLS/YOURLS/blob/1.9.2/user/config-sample.php#L62-L69
#
# To have multi-users support, it required to have more than one user/pass pairs.
# But it could be risky if any one of them remain with default value untouched.
# USER FOR WEB CONSOLE LOGIN
YOURLS_ADMIN_USERNAME=admin
# PASSWORD FOR THE USER ABOVE (WEB)
YOURLS_ADMIN_PASSWORD=my@dminP@ss
# SERVER TIMEZONE GMT OFFSET
YOURLS_HOURS_OFFSET=0
# PREFERED LANGUAGE
YOURLS_LANG=
# IS THE SRC/DST MAPPING UNIQUE?
YOURLS_UNIQUE_URLS=true
# IS THIS PRIVATE?
YOURLS_PRIVATE=true
# ENABLE DEBUG MODE? Uncomment to enable debug mode
# YOURLS_DEBUG=true
# 36: generates all lowercase keywords (ie: 13jkm)
# 62: generates mixed case keywords (ie: 13jKm or 13JKm)
YOURLS_URL_CONVERT=36