lighttpd-coin.conf.j2 517 B

1234567891011121314151617181920
  1. $HTTP["host"] == "{{ public_fqdn }}" {
  2. debug.log-request-handling = "enable"
  3. accesslog.filename = "{{ lighttpd_log_file }}"
  4. $HTTP["url"] !~ "^/(media/|static/|favicon.ico$)" {
  5. proxy.server = ( "" =>
  6. (
  7. ( "host" => "{{ gunicorn_binding_address }}",
  8. "port" => {{ gunicorn_port }}
  9. )
  10. )
  11. )
  12. }
  13. alias.url = (
  14. "/static/" => "{{ www_static_assets_directory }}/",
  15. )
  16. }