gitextract_kqixz7xz/ ├── .dockerignore ├── .gitchangelog.rc ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug-report-گزارش-مشکل.md │ │ ├── feature-request-پیشنهاد-ایده.md │ │ └── question-سوال.md │ ├── dependabot.yml │ ├── release_message.sh │ └── workflows/ │ ├── delete_issue.yml │ ├── docker.yaml │ ├── main.yml │ └── release.yml ├── .gitignore ├── .gitmodules ├── .vscode/ │ ├── launch.json │ ├── settings.json │ └── tasks.json ├── CONTRIBUTING.md ├── Dockerfile ├── HISTORY.md ├── LICENSE ├── LICENSE.md ├── Makefile ├── README.md ├── README_cn.md ├── README_fa.md ├── README_ru.md ├── VERSION ├── acme.sh/ │ ├── cert_utils.sh │ ├── generate_self_signed_cert.sh │ ├── get_cert.sh │ ├── install.sh │ ├── prepare_acme.sh │ └── run.sh ├── apply_configs.sh ├── btn-deploy/ │ └── oracle/ │ ├── VERSION │ ├── atp.tf │ ├── cloud-config.template.yaml │ ├── compute.tf │ ├── datasources.tf │ ├── kms.tf │ ├── loadbalancer.tf │ ├── network.tf │ ├── outputs.tf │ ├── policies.tf │ ├── providers.tf │ ├── schema.yaml │ ├── security-lists.tf │ ├── storage.tf │ ├── terraform.tfvars.example │ ├── tf_msz.tfvars.example │ └── variables.tf ├── cloud-init.yml ├── common/ │ ├── add_remote_assistant.sh │ ├── change_dns.py │ ├── commander.py │ ├── daily_actions.sh │ ├── docker-installer.sh │ ├── downgrade.sh │ ├── download.sh │ ├── download_install.sh │ ├── download_install_easylink.sh │ ├── example.json │ ├── google-bbr.sh │ ├── hiddify_installer.sh │ ├── install.sh │ ├── jinja.py │ ├── package_manager.sh │ ├── remove_remote_assistant.sh │ ├── replace_variables.sh │ ├── run.sh.j2 │ ├── sysctl.conf │ └── utils.sh ├── config.env.default ├── docker-compose.yml ├── docker-init.sh ├── docker.env ├── docs/ │ └── create_domain.md ├── haproxy/ │ ├── backends/ │ │ ├── common.cfg.pj2 │ │ └── v10.cfg.pj2 │ ├── fronts/ │ │ ├── in_httpmode.cfg.pj2 │ │ ├── in_httpmode_quic.cfg.pj2 │ │ ├── in_tcpmode.cfg.pj2 │ │ ├── sni_proxy.cfg.pj2 │ │ └── stats.cfg.pj2 │ ├── haproxy.cfg.j2 │ ├── hiddify-haproxy.service │ ├── install.sh │ ├── iplists/ │ │ ├── arvan.lst │ │ ├── cloudflare.lst │ │ └── cloudfront.lst │ ├── maps/ │ │ ├── decoy_domain.j2 │ │ ├── http_domain.j2 │ │ ├── path.j2 │ │ ├── path_h2.j2 │ │ ├── path_v10.j2 │ │ ├── sni.j2 │ │ └── sni_h2.j2 │ └── run.sh ├── hiddify-panel/ │ ├── app.cfg │ ├── app.py │ ├── backup.sh │ ├── download_yt.sh │ ├── hiddify-panel-background-tasks.service │ ├── hiddify-panel.service │ ├── install.sh │ ├── run.sh │ ├── temporary_access.sh │ ├── update_usage.sh │ └── uwsgi.ini ├── install.sh ├── menu.sh ├── nginx/ │ ├── add2shortlink.sh │ ├── ar_real_ip.conf │ ├── cf_real_ip.conf │ ├── conf.d/ │ │ ├── singbox-base.conf.j2 │ │ ├── speedtest.conf.j2 │ │ └── xray-base.conf.j2 │ ├── hiddify-nginx.service │ ├── install.sh │ ├── nginx.conf.j2 │ ├── parts/ │ │ ├── acme.conf │ │ ├── common.conf.j2 │ │ ├── def-link.conf.j2 │ │ ├── grpc.conf │ │ ├── hiddify.conf.j2 │ │ ├── proxy_path.conf.j2 │ │ ├── proxy_to_panel.conf.j2 │ │ ├── proxy_to_static.conf.j2 │ │ ├── short-link.conf.j2 │ │ ├── tcph2.conf │ │ ├── wsh2.conf │ │ └── xhttp.conf │ ├── pre-start.sh │ ├── run.sh │ └── uwsgi_params ├── operations/ │ └── lxd/ │ ├── README.fa.md │ ├── README.md │ ├── setup_lxc_container.sh │ └── utils/ │ ├── .gitignore │ ├── hiddify_ports_to_csv.sh │ └── lxc_ports_to_host.sh ├── other/ │ ├── deprecated/ │ │ ├── caddy/ │ │ │ ├── Caddyfile.template │ │ │ ├── hiddify-caddy.service │ │ │ ├── install.sh │ │ │ └── run.sh │ │ ├── certbot/ │ │ │ ├── install.sh │ │ │ └── run.sh │ │ ├── clash/ │ │ │ ├── all.yml │ │ │ ├── lite.yml │ │ │ ├── meta-proxies.yml │ │ │ ├── meta_all.yml │ │ │ ├── meta_lite.yml │ │ │ ├── meta_normal.yml │ │ │ ├── normal.yml │ │ │ ├── only_iran.yml │ │ │ ├── proxies.yml │ │ │ └── rules/ │ │ │ ├── ads-sites.yml │ │ │ ├── blocked-sites.yml │ │ │ ├── iran-sites.yml │ │ │ ├── open-sites.yml │ │ │ └── tmp-blocked-sites.yml │ │ ├── clash-server/ │ │ │ ├── clash-server.service.template │ │ │ ├── data/ │ │ │ │ └── config.yaml.template │ │ │ ├── install.sh │ │ │ ├── run.sh │ │ │ └── uninstall.sh │ │ ├── monitoring/ │ │ │ ├── cron.sh.template │ │ │ ├── hiddify_monitoring_web.service.template │ │ │ ├── install.sh │ │ │ ├── run.sh │ │ │ ├── simple_web.py.template │ │ │ └── uninstall.sh │ │ ├── netdata/ │ │ │ ├── dash.html │ │ │ ├── install.sh │ │ │ ├── run.sh │ │ │ └── uninstall.sh │ │ ├── nginx/ │ │ │ └── sni-proxy.conf.template │ │ ├── remove_deprecated.sh │ │ ├── shadowtls/ │ │ │ ├── install.sh │ │ │ ├── run.sh │ │ │ ├── shadowtls.conf.j2 │ │ │ └── shadowtls.service │ │ ├── sniproxy/ │ │ │ ├── hiddify-sniproxy.service.template │ │ │ ├── install.sh │ │ │ ├── run.sh │ │ │ └── sniproxy.conf.template │ │ ├── ss-azure-template.json │ │ ├── trojan-go/ │ │ │ ├── config.json.template │ │ │ ├── install.sh │ │ │ ├── run.sh │ │ │ └── uninstall.sh │ │ ├── vmess/ │ │ │ ├── config.json.template │ │ │ ├── install.sh │ │ │ ├── run.sh │ │ │ └── uninstall.sh │ │ └── xray/ │ │ ├── xtls-config.old.json.template │ │ └── xtls-sni-config.json.template │ ├── dnstt/ │ │ ├── dnstm_configs/ │ │ │ └── config.json.j2 │ │ ├── hiddify-dnstm-router.service │ │ ├── install.sh │ │ └── run.sh.j2 │ ├── docker/ │ │ ├── journalctl │ │ └── systemctl │ ├── hiddify-cli/ │ │ ├── disable.sh │ │ ├── h_client_config.json │ │ ├── hiddify-cli.service │ │ ├── install.sh.j2 │ │ └── run.sh.j2 │ ├── mysql/ │ │ └── install.sh │ ├── redis/ │ │ ├── hiddify-redis.service │ │ ├── install.sh │ │ ├── redis.conf │ │ └── run.sh │ ├── speedtest/ │ │ ├── .gitignore │ │ ├── License.md │ │ ├── README.md │ │ ├── assets/ │ │ │ ├── css/ │ │ │ │ ├── app.css │ │ │ │ └── darkmode.css │ │ │ ├── images/ │ │ │ │ └── icons/ │ │ │ │ ├── browserconfig.xml │ │ │ │ └── site.webmanifest │ │ │ └── js/ │ │ │ ├── app-2.5.4.js │ │ │ └── darkmode.js │ │ ├── hosted.html │ │ ├── index.html │ │ ├── install.sh │ │ └── upload │ ├── ssfaketls/ │ │ ├── disable.sh │ │ ├── hiddify-ss-faketls.service.j2 │ │ ├── install.sh │ │ └── run.sh │ ├── ssh/ │ │ ├── disable.sh │ │ ├── hiddify-ssh-liberty-bridge.service │ │ ├── install.sh │ │ └── run.sh │ ├── telegram/ │ │ ├── disable.sh │ │ ├── erlang/ │ │ │ ├── install.sh.j2 │ │ │ ├── prod-sys.config.j2 │ │ │ └── run.sh.j2 │ │ ├── install.sh.j2 │ │ ├── orig/ │ │ │ ├── install.sh │ │ │ ├── mtproxy.service │ │ │ ├── run.sh │ │ │ └── tgproxy_run.sh.j2 │ │ ├── python/ │ │ │ ├── config.py.j2 │ │ │ ├── install.sh │ │ │ ├── mtproxy.service │ │ │ └── run.sh │ │ ├── run.sh.j2 │ │ ├── telemt/ │ │ │ ├── add_version.sh │ │ │ ├── config.toml.j2 │ │ │ ├── install.sh │ │ │ ├── mtproxy.service │ │ │ └── run.sh │ │ └── tgo/ │ │ ├── install.sh │ │ ├── mtg.toml.j2 │ │ ├── mtproxy.service │ │ └── run.sh │ ├── v2ray/ │ │ ├── config-v2ray.json.j2 │ │ ├── install.sh │ │ └── run.sh │ ├── warp/ │ │ ├── change_ip.sh │ │ ├── disable.sh │ │ ├── install.sh │ │ ├── run.sh │ │ ├── singbox/ │ │ │ ├── change_ip.sh │ │ │ ├── check-quota.sh │ │ │ ├── disable.sh │ │ │ ├── hiddify-warp.service │ │ │ ├── install.sh │ │ │ ├── run.sh │ │ │ └── status.sh │ │ ├── status.sh │ │ └── wireguard/ │ │ ├── add_version.sh │ │ ├── change_ip.sh │ │ ├── disable.sh │ │ ├── install.sh │ │ ├── run.sh.j2 │ │ └── status.sh │ └── wireguard/ │ ├── disable.sh │ ├── install.sh.j2 │ ├── run.sh.j2 │ ├── script.sh │ └── wg_utils.sh ├── release ├── restart.sh ├── singbox/ │ ├── add_version.sh │ ├── configs/ │ │ ├── 00_log.json.j2 │ │ ├── 01_api.json.j2 │ │ ├── 02_dns.json.j2 │ │ ├── 03_routing.json.j2 │ │ ├── 05_inbounds_1030_shadowtls.json.j2 │ │ ├── 05_inbounds_10_ss_new.json.j2 │ │ ├── 05_inbounds_10_ss_ws_new.json.j2 │ │ ├── 05_inbounds_2000_socks_main.json.j2 │ │ ├── 05_inbounds_2001_socks_auth.json.j2 │ │ ├── 05_inbounds_2039_vmess_new.json.j2 │ │ ├── 05_inbounds_2061_reality_main.json.j2 │ │ ├── 05_inbounds_4010_tuic.json.j2 │ │ ├── 05_inbounds_4100_hysteria.json.j2 │ │ ├── 05_inbounds_mieru.json.j2 │ │ ├── 05_inbounds_naive.json.j2 │ │ ├── 05_inbounds_new.json.j2 │ │ ├── 05_inbounds_ssh.json.j2 │ │ ├── 06_outbounds.json.j2 │ │ ├── common/ │ │ │ ├── protocols/ │ │ │ │ ├── mieru.pj2 │ │ │ │ ├── naive.pj2 │ │ │ │ ├── socks.pj2 │ │ │ │ ├── ss.pj2 │ │ │ │ ├── ssh.pj2 │ │ │ │ ├── trojan.pj2 │ │ │ │ ├── vless.pj2 │ │ │ │ └── vmess.pj2 │ │ │ └── streams/ │ │ │ ├── grpc.pj2 │ │ │ ├── httpupgrade.pj2 │ │ │ ├── tcp.pj2 │ │ │ ├── ws.pj2 │ │ │ └── xhttp.pj2 │ │ └── includes/ │ │ └── multiplex.json.pj2 │ ├── hiddify-singbox.service │ ├── install.sh │ ├── run.sh │ ├── test.sh │ └── tests/ │ ├── trojan-grpc.json.template │ ├── trojan-tcp.json.template │ ├── trojan-ws.json.template │ ├── vless-grpc.json.template │ ├── vless-reality.json.template │ ├── vless-reality2.json.template │ ├── vless-tcp.json.template │ ├── vless-ws.json.template │ ├── vmess-grpc.json.template │ ├── vmess-tcp.json.template │ └── vmess-ws.json.template ├── status.sh ├── uninstall.sh ├── update.sh ├── uv.toml └── xray/ ├── add_version.sh ├── configs/ │ ├── 00_log.json.j2 │ ├── 01_api.json.j2 │ ├── 02_dns.json.j2 │ ├── 03_routing.json.j2 │ ├── 04_policy.json.j2 │ ├── 05_inbounds_01_api.json.j2 │ ├── 05_inbounds_02_kcp_main.json.j2 │ ├── 05_inbounds_02_reality_main.json.j2 │ ├── 05_inbounds_02_socks_main.json.j2 │ ├── 05_inbounds_02_xtls_main.json.j2 │ ├── 05_inbounds_03_dispatcher.json.j2 │ ├── 05_inbounds_03_dispatcher_h2.json.j2 │ ├── 05_inbounds_new.json.j2 │ ├── 06_outbounds.json.j2 │ ├── 07_transport.json.j2 │ ├── 08_stats.json.j2 │ ├── 09_reverse.json.j2 │ └── common/ │ ├── protocols/ │ │ ├── ss.pj2 │ │ ├── trojan.pj2 │ │ ├── vless.pj2 │ │ └── vmess.pj2 │ └── streams/ │ ├── grpc.pj2 │ ├── httpupgrade.pj2 │ ├── tcp.pj2 │ ├── ws.pj2 │ └── xhttp.pj2 ├── disable.sh ├── hiddify-xray.service ├── install.sh ├── pre-start.sh └── run.sh