mirror of
https://github.com/discourse/discourse.git
synced 2024-11-21 08:34:17 -06:00
5d014c633b
Add the following sample Capistrano configuration files to ease deployment to a VPS using Capistrano: * `config/deploy.rb.sample` * `config/thin.yml.sample` * `Capfile.sample` The sample Capfile will additionally load any recipes provided by Discourse plugins. Signed-off-by: David Celis <me@davidcel.is>
16 lines
322 B
Plaintext
16 lines
322 B
Plaintext
---
|
|
chdir: /var/www/discourse/current
|
|
environment: production
|
|
address: 0.0.0.0
|
|
port: 3000
|
|
timeout: 30
|
|
log: /var/www/discourse/shared/log/thin.log
|
|
pid: /var/www/discourse/shared/pids/thin.pid
|
|
socket: /var/www/discourse/tmp/thin.sock
|
|
max_conns: 1024
|
|
max_persistent_conns: 100
|
|
require: []
|
|
wait: 30
|
|
servers: 4
|
|
daemonize: true
|