]> Git — Sourcephile - comptalang.git/blob - web/config/keter.yml
Update to new symantic and draft Modules rendition.
[comptalang.git] / web / config / keter.yml
1 # After you've edited this file, remove the following line to allow
2 # `yesod keter` to build your bundle.
3 user-edited: false
4
5 # A Keter app is composed of 1 or more stanzas. The main stanza will define our
6 # web application. See the Keter documentation for more information on
7 # available stanzas.
8 stanzas:
9
10 # Your Yesod application.
11 - type: webapp
12
13 # Name of your executable. You are unlikely to need to change this.
14 # Note that all file paths are relative to the keter.yml file.
15 exec: ../dist/build/hcompta-web/hcompta-web
16
17 # Command line options passed to your application.
18 args: []
19
20 hosts:
21 # You can specify one or more hostnames for your application to respond
22 # to. The primary hostname will be used for generating your application
23 # root.
24 - www.hcompta-web.com
25
26 # Enable to force Keter to redirect to https
27 # Can be added to any stanza
28 requires-secure: false
29
30 # Static files.
31 - type: static-files
32 hosts:
33 - static.hcompta-web.com
34 root: ../static
35
36 # Uncomment to turn on directory listings.
37 # directory-listing: true
38
39 # Redirect plain domain name to www.
40 - type: redirect
41
42 hosts:
43 - hcompta-web.com
44 actions:
45 - host: www.hcompta-web.com
46 # secure: false
47 # port: 80
48
49 # Uncomment to switch to a non-permanent redirect.
50 # status: 303
51
52 # Use the following to automatically copy your bundle upon creation via `yesod
53 # keter`. Uses `scp` internally, so you can set it to a remote destination
54 # copy-to: user@host:/opt/keter/incoming
55
56 # If you would like to have Keter automatically create a PostgreSQL database
57 # and set appropriate environment variables for it to be discovered, uncomment
58 # the following line.
59 # plugins:
60 # postgres: true