Spaces:
Runtime error
Runtime error
| worker_processes 1; | |
| daemon off; | |
| pid /tmp/nginx.pid; | |
| error_log /var/log/nginx/error.log warn; | |
| events { | |
| worker_connections 1024; | |
| } | |
| http { | |
| include /etc/nginx/mime.types; | |
| default_type application/octet-stream; | |
| access_log /var/log/nginx/access.log; | |
| sendfile on; | |
| keepalive_timeout 65; | |
| # LibreTime Server Block | |
| server { | |
| listen 7860; | |
| server_name localhost; | |
| root /usr/share/libretime/legacy/public; | |
| index index.php index.html index.htm; | |
| client_max_body_size 512M; | |
| client_body_timeout 300s; | |
| location ~ \.php$ { | |
| fastcgi_buffers 64 4K; | |
| fastcgi_split_path_info ^(.+\.php)(/.+)$; | |
| try_files $fastcgi_script_name =404; | |
| include fastcgi_params; | |
| fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; | |
| set $path_info $fastcgi_path_info; | |
| fastcgi_param PATH_INFO $path_info; | |
| fastcgi_pass 127.0.0.1:9000; # We will configure PHP-FPM to listen here | |
| } | |
| location / { | |
| try_files $uri $uri/ /index.php$is_args$args; | |
| } | |
| location ~ ^/api/(v2|browser) { | |
| proxy_set_header Host $http_host; | |
| proxy_set_header X-Real-IP $remote_addr; | |
| proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; | |
| proxy_set_header X-Forwarded-Proto $scheme; | |
| proxy_redirect off; | |
| proxy_pass http://127.0.0.1:9001; | |
| } | |
| # Internal path for serving media files from the API. | |
| location /api/_media { | |
| internal; | |
| alias /srv/libretime; | |
| } | |
| } | |
| } | |