Move public to public_html.

parent 1d1865a6
...@@ -3,9 +3,9 @@ ...@@ -3,9 +3,9 @@
build_dir=$1 build_dir=$1
if [ ! -d "$build_dir/public" ]; then if [ ! -d "$build_dir/public_html" ]; then
exit 1 exit 1
fi fi
echo 'static buildpack' echo 'Static HTML'
exit 0 exit 0
...@@ -31,7 +31,7 @@ http { ...@@ -31,7 +31,7 @@ http {
listen <%= port %>; listen <%= port %>;
server_name _; server_name _;
keepalive_timeout 5; keepalive_timeout 5;
root public/; root public_html/;
<% backends.each do |backend| %> <% backends.each do |backend| %>
location <%= backend['mount_point'] %> { location <%= backend['mount_point'] %> {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment