mirror of
https://github.com/onkelbeh/cheatsheets.git
synced 2026-08-16 14:04:47 +02:00
338 B
338 B
title, tags, layout
| 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.