瀏覽代碼

Update jellyseerr-install.sh

add `jellyseerr.conf`
tteckster 1 年之前
父節點
當前提交
cf6d9bf200
共有 1 個文件被更改,包括 8 次插入0 次删除
  1. 8 0
      install/jellyseerr-install.sh

+ 8 - 0
install/jellyseerr-install.sh

@@ -37,6 +37,12 @@ git clone -q https://github.com/Fallenbagel/jellyseerr.git /opt/jellyseerr
 cd /opt/jellyseerr
 $STD yarn install
 $STD yarn build
+mkdir -p /etc/jellyseerr/
+cat <<EOF >/etc/jellyseerr/jellyseerr.conf
+PORT=5055
+HOST=0.0.0.0
+# JELLYFIN_TYPE=emby
+EOF
 msg_ok "Installed Jellyseerr"
 
 msg_info "Creating Service"
@@ -46,6 +52,8 @@ Description=jellyseerr Service
 After=network.target
 
 [Service]
+EnvironmentFile=/etc/jellyseerr/jellyseerr.conf
+Environment=NODE_ENV=production
 Type=exec
 WorkingDirectory=/opt/jellyseerr
 ExecStart=/usr/bin/yarn start