Spaces:
Sleeping
Sleeping
| 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; | |
| } | |
| } |