-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy path.env.example
More file actions
106 lines (98 loc) · 4.36 KB
/
Copy path.env.example
File metadata and controls
106 lines (98 loc) · 4.36 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
# phpCacheAdmin environment configuration
#
# Copy this file to ".env" (or ".env.local") and uncomment the values you need.
# Loading .env files requires vlucas/phpdotenv: composer require vlucas/phpdotenv
#
# Every key from config.dist.php is available as an environment variable, just
# prefix it with PCA_ and write it in UPPER_CASE. Array options use "_" instead
# of a dot (e.g., PCA_REDIS_0_HOST), and values may also be JSON.
#
# All options below are optional and commented out - the app falls back to the
# defaults from config.dist.php / config.php for anything not set here.
#
# Real environment variables (e.g., set by Docker) always take precedence over
# the values defined in this file.
# Select an environment-specific file, e.g., development also loads
# .env.development and .env.development.local (the most specific value wins).
#PCA_ENV=development
# === Dashboards ===
# The enabled dashboards and their order, as a JSON array of class names.
# The first item is the default dashboard. Leave unset to use all of them.
#PCA_DASHBOARDS=["RobiNN\\Pca\\Dashboards\\Server\\ServerDashboard","RobiNN\\Pca\\Dashboards\\Redis\\RedisDashboard","RobiNN\\Pca\\Dashboards\\Memcached\\MemcachedDashboard","RobiNN\\Pca\\Dashboards\\OPCache\\OPCacheDashboard","RobiNN\\Pca\\Dashboards\\APCu\\APCuDashboard","RobiNN\\Pca\\Dashboards\\Realpath\\RealpathDashboard"]
# === Redis (server 0, increase the index for more servers) ===
#PCA_REDIS_0_NAME=Localhost
#PCA_REDIS_0_HOST=127.0.0.1
#PCA_REDIS_0_PORT=6379
# Cluster nodes as a JSON array (optional, replaces host/port).
#PCA_REDIS_0_NODES=["127.0.0.1:7000","127.0.0.1:7001","127.0.0.1:7002"]
# Connection scheme, set to "tls" for an encrypted connection (optional).
#PCA_REDIS_0_SCHEME=tls
# SSL/TLS options as JSON, requires Redis >= 6.0 (optional).
#PCA_REDIS_0_SSL={"cafile":"private.pem","verify_peer":true}
#PCA_REDIS_0_DATABASE=0
# ACL credentials, require Redis >= 6.0 (optional).
#PCA_REDIS_0_USERNAME=
#PCA_REDIS_0_PASSWORD=
# File with a password, e.g., Docker secrets (optional).
#PCA_REDIS_0_AUTHFILE=/run/secrets/redis_password
# Unix domain socket (optional, replaces host/port).
#PCA_REDIS_0_PATH=/var/run/redis/redis-server.sock
# Number of databases, use this if the CONFIG command is disabled (optional).
#PCA_REDIS_0_DATABASES=16
# Use SCAN automatically when the database has more keys than this (default 100000).
#PCA_REDIS_0_SCANTHRESHOLD=100000
# Always use SCAN and retrieve at most this many keys (optional).
#PCA_REDIS_0_SCANSIZE=1000
# Separator for the tree view (optional).
#PCA_REDIS_0_SEPARATOR=:
# === Memcached (server 0, increase the index for more servers) ===
#PCA_MEMCACHED_0_NAME=Localhost
#PCA_MEMCACHED_0_HOST=127.0.0.1
#PCA_MEMCACHED_0_PORT=11211
# Unix domain socket (optional, replaces host/port).
#PCA_MEMCACHED_0_PATH=/var/run/memcached/memcached.sock
# Separator for the tree view (optional).
#PCA_MEMCACHED_0_SEPARATOR=:
# Use the Memcached extension only for get and set operations (optional).
#PCA_MEMCACHED_0_EXTENSION=true
# === APCu ===
# Separator for the tree view (optional).
#PCA_APCUSEPARATOR=:
# === Authentication ===
# Auth is enabled when at least one user is defined, as a JSON object.
#PCA_AUTHUSERS={"admin":"your-password"}
# Append &token=your-secret-token to the cronjob URL when auth is enabled.
#PCA_AUTHTOKEN=your-secret-token
# === Customizations ===
# Leave empty to detect the timezone automatically.
#PCA_TIMEZONE=Europe/Bratislava
#PCA_TIMEFORMAT="d. m. Y H:i:s"
#PCA_DECIMALSEP=,
#PCA_THOUSANDSSEP=" "
# Default key list view: table or tree.
#PCA_LISTVIEW=table
# Open the key view in a modal instead of a separate page.
#PCA_KEYMODAL=false
# Refresh interval for panels, in seconds.
#PCA_PANELREFRESH=30
# Refresh interval for metrics, in seconds.
#PCA_METRICSREFRESH=60
# Default metrics tab: 1h, 1d, 1w or 1m.
#PCA_METRICSTAB=1d
# Any random string to secure a metrics DB file.
#PCA_HASH=pca
# Directory for metrics DB files.
#PCA_METRICSDIR=/var/www/html/tmp/metrics
# Directory for Twig cache files.
#PCA_TWIGCACHE=/var/www/html/tmp/twig
# Enable Twig debug mode.
#PCA_TWIGDEBUG=false
# Path to the package when installed via composer, used for assets.
#PCA_PCAPATH=vendor/robinn/phpcacheadmin/
# URL to the dashboard when installed via composer, e.g., /phpcacheadmin
#PCA_URL=/
# === Docker / PHP ===
# Increase the PHP memory limit (Docker).
#PCA_PHP_MEMORY_LIMIT=256M
# Change the NGINX port (Docker).
#PCA_NGINX_PORT=80