spot.conf 214 B

123456789101112131415161718
  1. server_name _;
  2. client_max_body_size 0;
  3. root /usr/share/spot-client;
  4. index index.html;
  5. location ~ ^/(.*)$ {
  6. try_files $uri @root_path;
  7. }
  8. location @root_path {
  9. rewrite ^/(.*)$ / break;
  10. }
  11. location / {
  12. }