Skip to content

インフラ勉強会でWebAppをNginx+Unicornサーバー上で動かした時のリポジトリ

License

Notifications You must be signed in to change notification settings

rf0321/nginx-web-app-study

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

nginx-web-app-study

This application architecture

                  Reverse Proxy                BackEnd Server
                  --------                     ---------- 
                  |       | Organized Request  |         |
Client Request===>| Nginx |===================>| Unicorn | == SinatraApp
                  |       |                    |         |
                  |       |                    |         |
                  --------                     ----------

Setup

1.clone this repository and move to app directory

2.Install ruby gems in Gemfile

bundle install

3.Paste symbolic link

sudo ln -s ~/nginx-sinatra /var/www/nginx-sinatra

4.Make directory for logs

mkdir -p var/{run,log}

5.config/nginx.conf copy and paste to /etc/nginx/nginx.conf

cp config/nginx.conf /etc/nginx/nginx.conf

6.Start server

sudo nginx
unicorn -c config/unicorn.rb

If you finish these setup

Access to http://localhost

You can see 200 http status code and access_log in var/log/nginx_access.log

About

インフラ勉強会でWebAppをNginx+Unicornサーバー上で動かした時のリポジトリ

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages