Skip to content
This repository has been archived by the owner on Jan 4, 2022. It is now read-only.

Commit

Permalink
[infra] nginx conf
Browse files Browse the repository at this point in the history
  • Loading branch information
malev committed Jan 29, 2015
1 parent 8274a55 commit d86e556
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions infraestructure/nginx.conf
@@ -0,0 +1,17 @@
upstream aphrodite {
ip_hash;
server 0.0.0.0:3001;
server 0.0.0.0:3002;
server 0.0.0.0:3003;
}

server {
listen 80;

location / {
proxy_pass http://aphrodite;
}

access_log /home/deploy/log/access-analice.me.log;
error_log /home/deploy/log/error-analice.me.log;
}

0 comments on commit d86e556

Please sign in to comment.