make serve_static_assets setting configurable
This commit is contained in:
parent
4bfd03d6eb
commit
2268a992f7
2 changed files with 16 additions and 1 deletions
|
|
@ -48,6 +48,10 @@ defaults: &defaults
|
||||||
s3_region: 'us-east-1'
|
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
|
# Settings
|
||||||
#
|
#
|
||||||
|
|
@ -68,6 +72,7 @@ defaults: &defaults
|
||||||
# (expressed as an array of Diaspora IDs)
|
# (expressed as an array of Diaspora IDs)
|
||||||
community_spotlight:
|
community_spotlight:
|
||||||
- 'diasporahq@joindiaspora.com'
|
- 'diasporahq@joindiaspora.com'
|
||||||
|
|
||||||
# Email to send spotlight suggestions to
|
# Email to send spotlight suggestions to
|
||||||
spotlight_suggest_email: ''
|
spotlight_suggest_email: ''
|
||||||
|
|
||||||
|
|
@ -85,7 +90,6 @@ defaults: &defaults
|
||||||
# Enable extensive logging to log/{development,test,production}.log
|
# Enable extensive logging to log/{development,test,production}.log
|
||||||
debug: false
|
debug: false
|
||||||
|
|
||||||
|
|
||||||
# Enable extensive logging to websocket server.
|
# Enable extensive logging to websocket server.
|
||||||
socket_debug : false
|
socket_debug : false
|
||||||
|
|
||||||
|
|
@ -212,6 +216,7 @@ defaults: &defaults
|
||||||
|
|
||||||
development:
|
development:
|
||||||
<<: *defaults
|
<<: *defaults
|
||||||
|
serve_static_assets: true
|
||||||
|
|
||||||
production:
|
production:
|
||||||
<<: *defaults
|
<<: *defaults
|
||||||
|
|
@ -225,11 +230,14 @@ test:
|
||||||
pod_url: "http://localhost:9887"
|
pod_url: "http://localhost:9887"
|
||||||
socket_port: 8081
|
socket_port: 8081
|
||||||
open_invitations: true
|
open_invitations: true
|
||||||
|
serve_static_assets: true
|
||||||
|
|
||||||
integration_1:
|
integration_1:
|
||||||
<<: *defaults
|
<<: *defaults
|
||||||
pod_url: "http://localhost:45789"
|
pod_url: "http://localhost:45789"
|
||||||
|
serve_static_assets: true
|
||||||
|
|
||||||
integration_2:
|
integration_2:
|
||||||
<<: *defaults
|
<<: *defaults
|
||||||
pod_url: "http://localhost:34658"
|
pod_url: "http://localhost:34658"
|
||||||
|
serve_static_assets: true
|
||||||
|
|
|
||||||
7
config/initializers/static_assets.rb
Normal file
7
config/initializers/static_assets.rb
Normal 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
|
||||||
Loading…
Reference in a new issue