forked from nanobox-quickstarts/nanobox-slim
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
boxfile.yml
40 lines (34 loc) · 813 Bytes
/
boxfile.yml
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
run.config:
# install php and associated runtimes
engine: php
# php engine configuration (php version, extensions, etc)
engine.config:
# sets the php version to 7.0
runtime: php-7.0
# set the apache/nginx document root to public
document_root: public
# php extensions required for slim to run
extensions:
- dom
- mbstring
- session
- tokenizer
- zip
#
# network_dirs:
# data.storage:
# - path/to/shared/directory
# add a MySQL database
# data.db:
# image: nanobox/mysql
web.main:
start: php-server
# add writable dirs to your web component
writable_dirs:
- tmp/cache
# the path to a logfile you want streamed to the nanobox dashboard
log_watch:
slim[app]: logs/app.log
#
# data.storage:
# image: nanobox/unfs