Cloud init نصب - Xen-neX/Hiddify-Manager GitHub Wiki

🇺🇸 English          

این بخش مناسب برای هاستینگ‌هایی هست که کلود کانفیگ را ساپورت می‌کنه این کد را کپی کنید و در قسمت مربوطه قرار دهید

#cloud-config
package_upgrade: true
packages:
  - apt-transport-https
  - ca-certificates
  - curl
  - wget
  - gnupg-agent
  - software-properties-common
  - git

runcmd:
  - cd /opt
  - git clone https://github.com/hiddify/hiddify-config/
  - cd hiddify-config
 # uncomment it for using a special secret other wise it will be createed automatically
 # - echo "USER_SECRET=0123456789abcdef0123456789abcdef" >config.env
 # - echo "MAIN_DOMAIN=" >>config.env
  - echo "TELEGRAM_AD_TAG=" >>config.env
  - bash install.sh

final_message: "The system is finally up, after $UPTIME seconds"
output: { all: "| tee -a /root/cloud-init-output.log" }

# you can see the generated link from the website by using http://yourip/ or https://yourip.sslip.io in one hour, after that, it will be disapear. 

بعد از نصب این اسکریپت، از اینجا ادامه نصب را دنبال کنید تا نصب نهایی شود.

⚠️ **GitHub.com Fallback** ⚠️