1
0
mirror of https://github.com/onkelbeh/cheatsheets.git synced 2026-08-16 14:04:47 +02:00
Files
cheatsheets/passenger.md
2020-07-03 22:47:47 +10:00

338 B

title, tags, layout
title tags layout
Phusion Passenger
WIP
2017/sheet

Enabling Phusion passenger

server {
   listen 80;
   server_name www.yourhost.com;
   root /somewhere/public;   # <--- be sure to point to 'public'!
   passenger_enabled on;
   autoindex on; # Show directory listings
}

This is an example nginx configuration.