nginx.conf 415 B

1234567891011121314151617181920212223242526
  1. events {
  2. }
  3. http {
  4. server {
  5. root /usr/share/nginx/html;
  6. location / {
  7. }
  8. location /feed/ {
  9. autoindex on;
  10. }
  11. location /mail-archive/ {
  12. autoindex on;
  13. }
  14. location /css/ {
  15. types { } default_type "text/css; charset=utf-8";
  16. }
  17. location /media/ {
  18. }
  19. location /license/ {
  20. charset UTF-8;
  21. autoindex on;
  22. }
  23. location /.well-known/ {
  24. }
  25. }
  26. }