Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

unicorn.rb 506B

12345678910111213141516171819
  1. # set path to app that will be used to configure unicorn,
  2. # note the trailing slash in this example
  3. @dir = "/var/www/vlv-search/web/"
  4. worker_processes 2
  5. working_directory @dir
  6. timeout 30
  7. # Specify path to socket unicorn listens to,
  8. # we will use this in our nginx.conf later
  9. listen "#{@dir}tmp/sockets/unicorn.sock", :backlog => 64
  10. # Set process id path
  11. pid "#{@dir}tmp/pids/unicorn.pid"
  12. # Set log file paths
  13. # stderr_path "#{@dir}log/unicorn.stderr.log"
  14. # stdout_path "#{@dir}log/unicorn.stdout.log"