Wordlist-Video / nginx.conf
Sami
Setup Docker-based Hugging Face Space with project directory
cf9c856
raw
history blame contribute delete
314 Bytes
server {
listen 7860;
server_name localhost;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ =404;
}
# Enable gzip compression
gzip on;
gzip_types text/plain text/css application/javascript application/json;
gzip_min_length 1000;
}