make serve_static_assets setting configurable

This commit is contained in:
Jonne Haß 2011-12-29 16:18:28 +01:00
parent 4bfd03d6eb
commit 2268a992f7
2 changed files with 16 additions and 1 deletions

View file

@ -48,6 +48,10 @@ defaults: &defaults
s3_region: 'us-east-1'
# Serve static assets via the appserver, this is not recommended for production use,
# let your reverse proxy/webserver do it.
serve_static_assets: false
#
# Settings
#
@ -68,6 +72,7 @@ defaults: &defaults
# (expressed as an array of Diaspora IDs)
community_spotlight:
- 'diasporahq@joindiaspora.com'
# Email to send spotlight suggestions to
spotlight_suggest_email: ''
@ -85,7 +90,6 @@ defaults: &defaults
# Enable extensive logging to log/{development,test,production}.log
debug: false
# Enable extensive logging to websocket server.
socket_debug : false
@ -212,6 +216,7 @@ defaults: &defaults
development:
<<: *defaults
serve_static_assets: true
production:
<<: *defaults
@ -225,11 +230,14 @@ test:
pod_url: "http://localhost:9887"
socket_port: 8081
open_invitations: true
serve_static_assets: true
integration_1:
<<: *defaults
pod_url: "http://localhost:45789"
serve_static_assets: true
integration_2:
<<: *defaults
pod_url: "http://localhost:34658"
serve_static_assets: true

View file

@ -0,0 +1,7 @@
# Copyright (c) 2010-2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file.
Diaspora::Application.configure do
config.serve_static_assets = AppConfig[:serve_static_assets] unless AppConfig[:serve_static_assets].nil?
end