|
worker_processes auto; |
|
pid /tmp/nginx.pid; |
|
|
|
events { |
|
worker_connections 1024; |
|
use epoll; |
|
multi_accept on; |
|
} |
|
|
|
http { |
|
include /etc/nginx/mime.types; |
|
default_type application/octet-stream; |
|
|
|
access_log /tmp/access.log; |
|
error_log /tmp/error.log; |
|
|
|
sendfile on; |
|
keepalive_timeout 65; |
|
|
|
server { |
|
listen 8080; |
|
server_name localhost; |
|
|
|
root /usr/share/nginx/html; |
|
index index.html; |
|
|
|
location / { |
|
try_files $uri $uri/ /index.html; |
|
|
|
|
|
add_header 'Access-Control-Allow-Origin' 'https://huggingface.co.' always; |
|
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS' always; |
|
add_header 'Access-Control-Allow-Headers' 'DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range' always; |
|
add_header 'Access-Control-Expose-Headers' 'Content-Length,Content-Range' always; |
|
|
|
if ($request_method = 'OPTIONS') { |
|
add_header 'Access-Control-Max-Age' 1728000; |
|
add_header 'Content-Type' 'text/plain; charset=utf-8'; |
|
add_header 'Content-Length' 0; |
|
return 204; |
|
} |
|
} |
|
} |
|
} |
|
|