Guest User

Untitled

a guest
Feb 21st, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. $HTTP["host"] =~ "nicolettejones" {
  2. # block 4
  3. server.document-root = "/usr/local/share/nicolette/public"
  4. server.error-handler-404 = "/dispatch.fcgi"
  5. url.rewrite = (
  6. "^/$" => "index.html",
  7. "^([^.]+)$" => "$1.html",
  8. # 2
  9. )
  10. fastcgi.server = (
  11. ".fcgi" => (
  12. "localhost" => (
  13. "min-procs" => 2,
  14. "max-procs" => 2,
  15. "socket" => "/tmp/nicky.fcgi.socket",
  16. "bin-path" => "/usr/local/share/nicolette/public/dispatch.fcgi",
  17. "bin-environment" => (
  18. "RAILS_ENV" => "development",
  19. ),
  20. # 5
  21. ),
  22. ),
  23. )
  24.  
  25. } # end of $HTTP["host"] =~ "nicolettejones"
Add Comment
Please, Sign In to add comment