Skip to content

Commit 8bea3b3

Browse files
authoredJul 29, 2019
Merge pull request heroku#136 from root-io/canonical-host
Add support for canonical host
2 parents bde9522 + b613e77 commit 8bea3b3

File tree

3 files changed

+27
-0
lines changed

3 files changed

+27
-0
lines changed
 

‎README.md

+17
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,23 @@ This allows you to specify a different asset root for the directory of your appl
3232

3333
By default this is set to `public_html/`
3434

35+
#### Canonical Host
36+
This allows you to perform 301 redirects to a specific hostname, which can be useful for redirecting www to non-www (or vice versa).
37+
38+
```json
39+
{
40+
"canonical_host": "www.example.com"
41+
}
42+
```
43+
44+
You can use environment variables as well:
45+
46+
```json
47+
{
48+
"canonical_host": "${HOST}"
49+
}
50+
```
51+
3552
#### Default Character Set
3653
This allows you to specify a character set for your text assets (HTML, Javascript, CSS, and so on). For most apps, this should be the default value of "UTF-8", but you can override it by setting `encoding`:
3754

‎scripts/config/lib/nginx_config.rb

+4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ class NginxConfig
66
DEFAULT = {
77
root: "public_html/",
88
encoding: "UTF-8",
9+
canonical_host: false,
910
clean_urls: false,
1011
https_only: false,
1112
basic_auth: false,
@@ -26,6 +27,9 @@ def initialize(json_file)
2627
json["root"] ||= DEFAULT[:root]
2728
json["encoding"] ||= DEFAULT[:encoding]
2829

30+
json["canonical_host"] ||= DEFAULT[:canonical_host]
31+
json["canonical_host"] = NginxConfigUtil.interpolate(json["canonical_host"], ENV) if json["canonical_host"]
32+
2933
index = 0
3034
json["proxies"] ||= {}
3135
json["proxies"].each do |loc, hash|

‎scripts/config/templates/nginx.conf.erb

+6
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,12 @@ http {
7777
}
7878
<% end %>
7979

80+
<% if canonical_host %>
81+
if ($host != <%= canonical_host %>) {
82+
return 301 $http_x_forwarded_proto://<%= canonical_host %>$request_uri;
83+
}
84+
<% end %>
85+
8086
<% routes.each do |route, path| %>
8187
location ~ ^<%= route %>$ {
8288
set $route <%= route %>;

0 commit comments

Comments
 (0)
Please sign in to comment.