CoolFace
Apppublic

multimodalart/queue_app

sourceHugging Facemitupdated 3y agoView on Hugging Face
0likes
nginx.conf15 linesDownload Raw Back to root
1user nginx;2worker_processes  1;3 4events {5    worker_connections 1024;6}7 8http {9    include       mime.types;10    default_type  application/octet-stream;11    sendfile        on;12    keepalive_timeout  65;13 14    include /etc/nginx/conf.d/*.conf;15}