graphite-init.j2 388 B

1234567891011121314151617181920
  1. server {
  2. listen 80;
  3. listen [::]:80;
  4. server_name graphite.{{ freifunk.domain }}
  5. root /var/www/html;
  6. index index.html;
  7. charset utf-8;
  8. location / {
  9. uwsgi_pass unix:/tmp/uwsgi.sock;
  10. include uwsgi_params;
  11. }
  12. location /content/ {
  13. alias /var/lib/graphite/webapp/content/;
  14. }
  15. location /.well-known/ {
  16. alias /var/www/html/.well-known/;
  17. try_files $uri $uri/ =404;
  18. }
  19. }