By leeatifrog
I used the One-Click Install for a Rails app. Everything appears to have gone smoothly.
So I created a folder side-by-side with the /home/rails/example app and updated /etc/nginx/sites-available/rails (and thereby sites-enabled too) to point at my folder instead of example.
I then setup my secret_key_base, and ran the command bundle exec rake assets:precompile db:migrate RAILS_ENV=production
Rebooted the server, effectively, to ensure all changes would pick up. But when accessing my site by the IP address, it still shows that default “Yay! You’re on Rails!” page.
I’m not sure what I’m overlooking and would love if someone could point me in the right direction.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Accepted Answer
Do this:
Remove the IP from your nginx vhosts (159.65.238.194). Leave the subdomain there. Restart Nginx
Stop the rails service: systemctl stop rails.service
Start rails from your new app’s folder like this:
cd /home/rails/vault
rails server
127.0.1.1 vault2.ifrog.com vault
This comment has been deleted
Are both your vhosts configured to use the server’s IP address? If so, Nginx will route all visits to the first vhost in its configuration (sites-available/rails). You’ll need to define actual domain names in both vosts sites-available/rails for both vhosts. It doesn’t have to be a registered domain name, it can be one you define in in your local PC in /etc/hosts for example.
Or comment out the “example” app and then Nginx will default to your own app from then on.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.