railman 0.6.11 → 0.6.12
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0765b25e422ff4156cce6a14dcadd45c025d30b4
|
4
|
+
data.tar.gz: 4968dd62c06c7939662e0f5ad68238d019dd51f8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b629a963c288fc4dead475265625cb1ae0d1a64a278b38af5b4dc413effbc4f641e2322de40f49348dc00a0d32410d49903be4a48a1224fe8d51668572af7d97
|
7
|
+
data.tar.gz: 3479a1d3ed26ff47574d6f3f9ae0fd8c1a48949232dddf8130c6277828e53feaf29b977c484f28eba05b537bdeae911a58022d11f3e65b787fc1f9b2a75500b8
|
data/lib/railman/version.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Put server-specific environment variables here
|
2
2
|
# .env is loaded by the dotenv gem on startup
|
3
|
-
# Don't commit this file to Git !!! Copy from .env.example.
|
3
|
+
# Don't commit this file to Git !!! Copy from .env.example.test and modify for each machine
|
4
4
|
|
5
5
|
# Application settings
|
6
6
|
APP_NAME = '<%= @config.app_name %>'
|
@@ -42,7 +42,7 @@ Rails.application.configure do
|
|
42
42
|
# config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX
|
43
43
|
|
44
44
|
# Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
|
45
|
-
|
45
|
+
config.force_ssl = true
|
46
46
|
|
47
47
|
# Use the lowest log level to ensure availability of diagnostic information
|
48
48
|
# when problems arise.
|
@@ -11,4 +11,4 @@ domains = <%= @config.domains.join(',') %>
|
|
11
11
|
text = True
|
12
12
|
|
13
13
|
# authenticate by placing a file in the webroot (under .well-known/acme-challenge/) and then letting LE fetch it
|
14
|
-
webroot-path = /home/deploy/apps/<%= @config.app_name
|
14
|
+
webroot-path = /home/deploy/apps/<%= @config.app_name %>/public
|