nginx.conf 409 B

1234567891011121314151617
  1. server {
  2. listen {{ nightly_build_nginx_listen }};
  3. server_name {{ nightly_build_hostname }};
  4. root {{ nightly_build_wwwdir }};
  5. index index.html;
  6. location / {
  7. try_files $uri $uri/ =404;
  8. }
  9. location /reports {
  10. alias {{ testsuite_dir }}/reports;
  11. }
  12. location /tor-browser-builds {
  13. alias {{ testsuite_dir }}/tor-browser-builds;
  14. autoindex on;
  15. }
  16. }