mirror of
https://github.com/onkelbeh/cheatsheets.git
synced 2025-06-16 07:07:37 +02:00
338 B
338 B
title | tags | layout | |
---|---|---|---|
Phusion Passenger |
|
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.