nginx.conf 359 B

1234567891011121314151617181920212223
  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 /css/ {
  12. types { } default_type "text/css; charset=utf-8";
  13. }
  14. location /media/ {
  15. }
  16. location /license/ {
  17. charset UTF-8;
  18. autoindex on;
  19. }
  20. location /.well-known/ {
  21. }
  22. }
  23. }