26 lines
698 B
HTML
26 lines
698 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title></title>
|
|
<link href="style.css" rel="stylesheet" />
|
|
</head>
|
|
<body>
|
|
<h1>Phusion Passenger</h1>
|
|
<pre><code>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
|
|
}
|
|
</code></pre>
|
|
|
|
|
|
<script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/1.6.4/jquery.min.js'></script>
|
|
<script src="http://cachedcommons.org/cache/prettify/1.0.0/javascripts/prettify-min.js"></script>
|
|
<script>$("pre").addClass("prettyprint");</script>
|
|
<script>prettyPrint();</script>
|
|
</body>
|
|
</html>
|