Sha256: fa426832fcac0c03aa4791c3d8473ef12131441c0b22acd120f2056ce6c0e3f4
Contents?: true
Size: 512 Bytes
Versions: 14
Compression:
Stored size: 512 Bytes
Contents
# If you are using thin with sockets upstream castronaut { server unix:/tmp/castronaut.0.sock; } # Uncomment if you are not using sockets # upstream castronaut { # server 127.0.0.1:4567; # } server { listen 80; server_name myapp.com; location / { proxy_pass http://castronaut; proxy_redirect off; proxy_set_header Host $host; } root /path/to/castronaut/; access_log /var/log/nginx/castronaut/access.log; error_log /var/log/nginx/castronaut/error.log; }
Version data entries
14 entries across 14 versions & 3 rubygems