1234567891011121314151617181920212223242526 |
- events {
- }
- http {
- server {
- root /usr/share/nginx/html;
- location / {
- }
- location /feed/ {
- autoindex on;
- }
- location /mail-archive/ {
- autoindex on;
- }
- location /css/ {
- types { } default_type "text/css; charset=utf-8";
- }
- location /media/ {
- }
- location /license/ {
- charset UTF-8;
- autoindex on;
- }
- location /.well-known/ {
- }
- }
- }
|