forked from lagunovsky/docker-nginx-pagespeed
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathenv-example
34 lines (24 loc) · 1.06 KB
/
env-example
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
MAKE_J=4
NGINX_VERSION=1.13.3
PAGESPEED_VERSION=1.12.34.2
LIBPNG_VERSION=1.6.29
### add path to include extra configuration files: (default: off)
NGINX_INCLUDE_PATH=/app/config/nginx/*.conf
### Include default server definition with health check: on|off (default: on)
NGINX_DEFAULT_SERVER=on
### Include extra common fastcgi PHP GeoIP variables: on|off (default: on)
NGINX_FASTCGI_GEOIP=on
### Google PageSpeed algorithm: on|off (default: off)
NGINX_PAGESPEED=on
### PageSpeed image optimization: on|off (default: off)
NGINX_PAGESPEED_IMG=on
### PageSpeed javascripts optimization: on|off (default: off)
NGINX_PAGESPEED_JS=on
### PageSpeed style sheets optimization: on|off (default: off)
NGINX_PAGESPEED_CSS=on
### PageSpeed cache storage: files|redis|memcached (default: files)
NGINX_PAGESPEED_STORAGE=files
### PageSpeed Redis cache storage address and port: redis.host:port (default: none)
NGINX_PAGESPEED_REDIS=redis.host:6379
### PageSpeed Memcached cache storage address and port: memcached.host:port (default: none)
NGINX_PAGESPEED_MEMCACHED=memcached.host:11211