🎨 Sync 2026-06-11 21:20:11

This commit is contained in:
github-actions[bot]
2026-06-11 21:20:11 +08:00
parent 8287bb527a
commit b2ad010c6f
19 changed files with 950 additions and 420 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
LUCI_TITLE:=Spectra Theme
LUCI_DEPENDS:=+curl +php8 +php8-cgi +php8-fpm +php8-mod-curl +php8-mod-zip +php8-mod-mbstring +ffmpeg
PKG_VERSION:=27.574.74123~9e4b7f2
PKG_RELEASE:=4
PKG_RELEASE:=5
LUCI_MINIFY_CSS:=0
@@ -0,0 +1,15 @@
location /spectra/ {
location ~ \.php$ {
fastcgi_param HTTP_PROXY "";
fastcgi_connect_timeout 300s;
fastcgi_read_timeout 300s;
fastcgi_send_timeout 300s;
fastcgi_buffer_size 32k;
fastcgi_buffers 4 32k;
fastcgi_busy_buffers_size 64k;
fastcgi_temp_file_write_size 64k;
include fastcgi_params;
fastcgi_pass 127.0.0.1:1026;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
}