1
0
mirror of https://github.com/onkelbeh/cheatsheets.git synced 2025-06-16 07:07:37 +02:00
cheatsheets/passenger.md
2020-07-03 22:47:47 +10:00

338 B

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.