Skip to content

antonydenyer/capistrano-nancy

Repository files navigation

capistrano-nancy

An example of a simple nancy application deployed with capistrano-mono-deploy hosting on nginx using fastcgi

Clone the repo and build the solution

And then execute:

$ bundle

Or install it yourself as:

$ gem install capistrano-mono-deploy

In your nginx config do something like this

server{
  listen 80;
  server_name localhost;
  
  location / {
    fastcgi_pass unix:/tmp/SOCK-capistrano-nancy;
    include /etc/nginx/fastcgi_params;
  }
}

Edit config/deploy.rb to point to your server and use the correct user.

Then run

$ cap deploy

And your site should be up!

References:

About

An example of a simple Nancy application deployed with capistrano-mono-deploy

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published