php-worker-template / nginx.conf
Emalawi19's picture
Update nginx.conf
b871f4d verified
Raw
History Blame Contribute Delete
460 Bytes
server {
listen 7860 default_server;
listen [::]:7860 default_server;
# Look for files directly in the Hugging Face workspace root
root /app;
index index.php index.html index.htm;
server_name _;
location / {
try_files $uri $uri/ =404;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/run/php/php8.1-fpm.sock;
}
location ~ /\.ht {
deny all;
}
}