├── .github └── FUNDING.yml ├── .gitignore ├── COPYING ├── README.md ├── SECURITY.md ├── clean_nginx_sockets.sh ├── etc ├── apt │ └── apt.conf.d │ │ └── 30languages ├── bind │ ├── named.conf.local │ └── named.conf.options ├── clamav │ └── clamav-milter.conf ├── dovecot │ └── conf.d │ │ ├── 10-auth.conf │ │ ├── 10-logging.conf │ │ ├── 10-mail.conf │ │ └── 10-master.conf ├── jailkit │ └── jk_init.ini ├── login.defs ├── logrotate.d │ ├── nginx │ └── php-fpm ├── mysql │ └── mariadb.conf.d │ │ └── manual_settings.cnf ├── nginx │ ├── fastcgi.conf │ ├── nginx.conf │ └── snippets │ │ └── fastcgi-php.conf ├── postfix-clearnet │ ├── canonical │ ├── main.cf │ ├── master.cf │ ├── sasl_password │ └── transport ├── postfix │ ├── canonical │ ├── main.cf │ ├── master.cf │ ├── sender_login_maps │ ├── sql │ │ └── alias.cf │ └── transport ├── rc.local ├── resolv.conf ├── rspamd │ ├── local.d │ │ ├── actions.conf │ │ ├── antivirus.conf │ │ ├── arc.conf │ │ ├── classifier-bayes.conf │ │ ├── dkim_signing.conf │ │ ├── greylist.conf │ │ ├── groups.conf │ │ ├── logging.inc │ │ ├── neural.conf │ │ ├── neural_group.conf │ │ ├── options.inc │ │ ├── phishing.conf │ │ ├── ratelimit.conf │ │ ├── redis.conf │ │ └── worker-fuzzy.inc │ └── override.d │ │ ├── fuzzy_check.conf │ │ └── worker-controller.inc ├── security │ └── limits.conf ├── ssh │ └── sshd_config.d │ │ └── custom.conf ├── sysctl.d │ └── 99-custom-hosting.conf ├── systemd │ ├── journald.conf │ ├── system │ │ ├── dovecot.service.d │ │ │ └── custom.conf │ │ ├── hosting-del.service │ │ ├── hosting-del.timer │ │ ├── hosting.service │ │ ├── hosting.timer │ │ ├── mariadb.service.d │ │ │ └── custom.conf │ │ ├── nginx.service │ │ ├── php8.1-fpm.service │ │ ├── php8.1-fpm@.service │ │ ├── php8.1-fpm@default.service │ │ ├── php8.2-fpm.service │ │ ├── php8.2-fpm@.service │ │ ├── php8.2-fpm@default.service │ │ ├── postfix.service.d │ │ │ └── custom.conf │ │ ├── postfix@.service.d │ │ │ └── custom.conf │ │ └── tor@default.service.d │ │ │ └── custom.conf │ └── timesyncd.conf └── tor │ └── torrc ├── install_binaries.sh ├── update-translation.sh └── var └── www ├── common.php ├── composer.json ├── cron.php ├── find_old.php ├── html ├── admin.php ├── coinpayments_ipn.php ├── delete.php ├── faq.php ├── files.php ├── home.php ├── index.php ├── list.php ├── log.php ├── login.php ├── logout.php ├── password.php ├── pgp.php ├── phpmyadmin │ └── config.inc.php ├── register.php ├── robots.txt ├── squirrelmail │ └── config │ │ └── config.php └── upgrade.php ├── locale ├── af │ └── LC_MESSAGES │ │ ├── hosting.mo │ │ └── hosting.po ├── az │ └── LC_MESSAGES │ │ ├── hosting.mo │ │ └── hosting.po ├── cs_CZ │ └── LC_MESSAGES │ │ ├── hosting.mo │ │ └── hosting.po ├── de_DE │ └── LC_MESSAGES │ │ ├── hosting.mo │ │ └── hosting.po ├── es │ └── LC_MESSAGES │ │ ├── hosting.mo │ │ └── hosting.po ├── hosting.pot ├── pl │ └── LC_MESSAGES │ │ ├── hosting.mo │ │ └── hosting.po ├── ru │ └── LC_MESSAGES │ │ ├── hosting.mo │ │ └── hosting.po ├── tr │ └── LC_MESSAGES │ │ ├── hosting.mo │ │ └── hosting.po └── uk │ └── LC_MESSAGES │ ├── hosting.mo │ └── hosting.po ├── mail └── index.php ├── setup.php ├── setup_chroot.sh └── skel └── www └── index.hosting.html /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/SECURITY.md -------------------------------------------------------------------------------- /clean_nginx_sockets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/clean_nginx_sockets.sh -------------------------------------------------------------------------------- /etc/apt/apt.conf.d/30languages: -------------------------------------------------------------------------------- 1 | Acquire::Languages "none"; 2 | -------------------------------------------------------------------------------- /etc/bind/named.conf.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/etc/bind/named.conf.local -------------------------------------------------------------------------------- /etc/bind/named.conf.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/etc/bind/named.conf.options -------------------------------------------------------------------------------- /etc/clamav/clamav-milter.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/etc/clamav/clamav-milter.conf -------------------------------------------------------------------------------- /etc/dovecot/conf.d/10-auth.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/etc/dovecot/conf.d/10-auth.conf -------------------------------------------------------------------------------- /etc/dovecot/conf.d/10-logging.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/etc/dovecot/conf.d/10-logging.conf -------------------------------------------------------------------------------- /etc/dovecot/conf.d/10-mail.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/etc/dovecot/conf.d/10-mail.conf -------------------------------------------------------------------------------- /etc/dovecot/conf.d/10-master.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/etc/dovecot/conf.d/10-master.conf -------------------------------------------------------------------------------- /etc/jailkit/jk_init.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/etc/jailkit/jk_init.ini -------------------------------------------------------------------------------- /etc/login.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/etc/login.defs -------------------------------------------------------------------------------- /etc/logrotate.d/nginx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/etc/logrotate.d/nginx -------------------------------------------------------------------------------- /etc/logrotate.d/php-fpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/etc/logrotate.d/php-fpm -------------------------------------------------------------------------------- /etc/mysql/mariadb.conf.d/manual_settings.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/etc/mysql/mariadb.conf.d/manual_settings.cnf -------------------------------------------------------------------------------- /etc/nginx/fastcgi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/etc/nginx/fastcgi.conf -------------------------------------------------------------------------------- /etc/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/etc/nginx/nginx.conf -------------------------------------------------------------------------------- /etc/nginx/snippets/fastcgi-php.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/etc/nginx/snippets/fastcgi-php.conf -------------------------------------------------------------------------------- /etc/postfix-clearnet/canonical: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/etc/postfix-clearnet/canonical -------------------------------------------------------------------------------- /etc/postfix-clearnet/main.cf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/etc/postfix-clearnet/main.cf -------------------------------------------------------------------------------- /etc/postfix-clearnet/master.cf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/etc/postfix-clearnet/master.cf -------------------------------------------------------------------------------- /etc/postfix-clearnet/sasl_password: -------------------------------------------------------------------------------- 1 | [10.8.0.1] MY_USER:MY_PASSWORD 2 | -------------------------------------------------------------------------------- /etc/postfix-clearnet/transport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/etc/postfix-clearnet/transport -------------------------------------------------------------------------------- /etc/postfix/canonical: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/etc/postfix/canonical -------------------------------------------------------------------------------- /etc/postfix/main.cf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/etc/postfix/main.cf -------------------------------------------------------------------------------- /etc/postfix/master.cf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/etc/postfix/master.cf -------------------------------------------------------------------------------- /etc/postfix/sender_login_maps: -------------------------------------------------------------------------------- 1 | /(.*)@dhosting4xxoydyaivckq7tsmtgi4wfs3flpeyitekkmqwu4v4r46syd.onion/ $1 2 | -------------------------------------------------------------------------------- /etc/postfix/sql/alias.cf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/etc/postfix/sql/alias.cf -------------------------------------------------------------------------------- /etc/postfix/transport: -------------------------------------------------------------------------------- 1 | .onion : 2 | * relay:[127.0.0.1]:2525 3 | -------------------------------------------------------------------------------- /etc/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/etc/rc.local -------------------------------------------------------------------------------- /etc/resolv.conf: -------------------------------------------------------------------------------- 1 | nameserver 127.0.0.1 2 | options edns0 trust-ad 3 | -------------------------------------------------------------------------------- /etc/rspamd/local.d/actions.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/etc/rspamd/local.d/actions.conf -------------------------------------------------------------------------------- /etc/rspamd/local.d/antivirus.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/etc/rspamd/local.d/antivirus.conf -------------------------------------------------------------------------------- /etc/rspamd/local.d/arc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/etc/rspamd/local.d/arc.conf -------------------------------------------------------------------------------- /etc/rspamd/local.d/classifier-bayes.conf: -------------------------------------------------------------------------------- 1 | autolearn = true; 2 | -------------------------------------------------------------------------------- /etc/rspamd/local.d/dkim_signing.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/etc/rspamd/local.d/dkim_signing.conf -------------------------------------------------------------------------------- /etc/rspamd/local.d/greylist.conf: -------------------------------------------------------------------------------- 1 | enabled = false; 2 | -------------------------------------------------------------------------------- /etc/rspamd/local.d/groups.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/etc/rspamd/local.d/groups.conf -------------------------------------------------------------------------------- /etc/rspamd/local.d/logging.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/etc/rspamd/local.d/logging.inc -------------------------------------------------------------------------------- /etc/rspamd/local.d/neural.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/etc/rspamd/local.d/neural.conf -------------------------------------------------------------------------------- /etc/rspamd/local.d/neural_group.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/etc/rspamd/local.d/neural_group.conf -------------------------------------------------------------------------------- /etc/rspamd/local.d/options.inc: -------------------------------------------------------------------------------- 1 | dns { 2 | enable_dnssec = true; 3 | } 4 | -------------------------------------------------------------------------------- /etc/rspamd/local.d/phishing.conf: -------------------------------------------------------------------------------- 1 | phishtank_enabled = false; 2 | -------------------------------------------------------------------------------- /etc/rspamd/local.d/ratelimit.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/etc/rspamd/local.d/ratelimit.conf -------------------------------------------------------------------------------- /etc/rspamd/local.d/redis.conf: -------------------------------------------------------------------------------- 1 | servers = "127.0.0.1"; 2 | -------------------------------------------------------------------------------- /etc/rspamd/local.d/worker-fuzzy.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/etc/rspamd/local.d/worker-fuzzy.inc -------------------------------------------------------------------------------- /etc/rspamd/override.d/fuzzy_check.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/etc/rspamd/override.d/fuzzy_check.conf -------------------------------------------------------------------------------- /etc/rspamd/override.d/worker-controller.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/etc/rspamd/override.d/worker-controller.inc -------------------------------------------------------------------------------- /etc/security/limits.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/etc/security/limits.conf -------------------------------------------------------------------------------- /etc/ssh/sshd_config.d/custom.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/etc/ssh/sshd_config.d/custom.conf -------------------------------------------------------------------------------- /etc/sysctl.d/99-custom-hosting.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/etc/sysctl.d/99-custom-hosting.conf -------------------------------------------------------------------------------- /etc/systemd/journald.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/etc/systemd/journald.conf -------------------------------------------------------------------------------- /etc/systemd/system/dovecot.service.d/custom.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/etc/systemd/system/dovecot.service.d/custom.conf -------------------------------------------------------------------------------- /etc/systemd/system/hosting-del.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/etc/systemd/system/hosting-del.service -------------------------------------------------------------------------------- /etc/systemd/system/hosting-del.timer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/etc/systemd/system/hosting-del.timer -------------------------------------------------------------------------------- /etc/systemd/system/hosting.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/etc/systemd/system/hosting.service -------------------------------------------------------------------------------- /etc/systemd/system/hosting.timer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/etc/systemd/system/hosting.timer -------------------------------------------------------------------------------- /etc/systemd/system/mariadb.service.d/custom.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/etc/systemd/system/mariadb.service.d/custom.conf -------------------------------------------------------------------------------- /etc/systemd/system/nginx.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/etc/systemd/system/nginx.service -------------------------------------------------------------------------------- /etc/systemd/system/php8.1-fpm.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/etc/systemd/system/php8.1-fpm.service -------------------------------------------------------------------------------- /etc/systemd/system/php8.1-fpm@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/etc/systemd/system/php8.1-fpm@.service -------------------------------------------------------------------------------- /etc/systemd/system/php8.1-fpm@default.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/etc/systemd/system/php8.1-fpm@default.service -------------------------------------------------------------------------------- /etc/systemd/system/php8.2-fpm.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/etc/systemd/system/php8.2-fpm.service -------------------------------------------------------------------------------- /etc/systemd/system/php8.2-fpm@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/etc/systemd/system/php8.2-fpm@.service -------------------------------------------------------------------------------- /etc/systemd/system/php8.2-fpm@default.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/etc/systemd/system/php8.2-fpm@default.service -------------------------------------------------------------------------------- /etc/systemd/system/postfix.service.d/custom.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/etc/systemd/system/postfix.service.d/custom.conf -------------------------------------------------------------------------------- /etc/systemd/system/postfix@.service.d/custom.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/etc/systemd/system/postfix@.service.d/custom.conf -------------------------------------------------------------------------------- /etc/systemd/system/tor@default.service.d/custom.conf: -------------------------------------------------------------------------------- 1 | [Service] 2 | AppArmorProfile= 3 | -------------------------------------------------------------------------------- /etc/systemd/timesyncd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/etc/systemd/timesyncd.conf -------------------------------------------------------------------------------- /etc/tor/torrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/etc/tor/torrc -------------------------------------------------------------------------------- /install_binaries.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/install_binaries.sh -------------------------------------------------------------------------------- /update-translation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/update-translation.sh -------------------------------------------------------------------------------- /var/www/common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/var/www/common.php -------------------------------------------------------------------------------- /var/www/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/var/www/composer.json -------------------------------------------------------------------------------- /var/www/cron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/var/www/cron.php -------------------------------------------------------------------------------- /var/www/find_old.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/var/www/find_old.php -------------------------------------------------------------------------------- /var/www/html/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/var/www/html/admin.php -------------------------------------------------------------------------------- /var/www/html/coinpayments_ipn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/var/www/html/coinpayments_ipn.php -------------------------------------------------------------------------------- /var/www/html/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/var/www/html/delete.php -------------------------------------------------------------------------------- /var/www/html/faq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/var/www/html/faq.php -------------------------------------------------------------------------------- /var/www/html/files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/var/www/html/files.php -------------------------------------------------------------------------------- /var/www/html/home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/var/www/html/home.php -------------------------------------------------------------------------------- /var/www/html/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/var/www/html/index.php -------------------------------------------------------------------------------- /var/www/html/list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/var/www/html/list.php -------------------------------------------------------------------------------- /var/www/html/log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/var/www/html/log.php -------------------------------------------------------------------------------- /var/www/html/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/var/www/html/login.php -------------------------------------------------------------------------------- /var/www/html/logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/var/www/html/logout.php -------------------------------------------------------------------------------- /var/www/html/password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/var/www/html/password.php -------------------------------------------------------------------------------- /var/www/html/pgp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/var/www/html/pgp.php -------------------------------------------------------------------------------- /var/www/html/phpmyadmin/config.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/var/www/html/phpmyadmin/config.inc.php -------------------------------------------------------------------------------- /var/www/html/register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/var/www/html/register.php -------------------------------------------------------------------------------- /var/www/html/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Allow: / 3 | 4 | -------------------------------------------------------------------------------- /var/www/html/squirrelmail/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/var/www/html/squirrelmail/config/config.php -------------------------------------------------------------------------------- /var/www/html/upgrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/var/www/html/upgrade.php -------------------------------------------------------------------------------- /var/www/locale/af/LC_MESSAGES/hosting.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/var/www/locale/af/LC_MESSAGES/hosting.mo -------------------------------------------------------------------------------- /var/www/locale/af/LC_MESSAGES/hosting.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/var/www/locale/af/LC_MESSAGES/hosting.po -------------------------------------------------------------------------------- /var/www/locale/az/LC_MESSAGES/hosting.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/var/www/locale/az/LC_MESSAGES/hosting.mo -------------------------------------------------------------------------------- /var/www/locale/az/LC_MESSAGES/hosting.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/var/www/locale/az/LC_MESSAGES/hosting.po -------------------------------------------------------------------------------- /var/www/locale/cs_CZ/LC_MESSAGES/hosting.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/var/www/locale/cs_CZ/LC_MESSAGES/hosting.mo -------------------------------------------------------------------------------- /var/www/locale/cs_CZ/LC_MESSAGES/hosting.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/var/www/locale/cs_CZ/LC_MESSAGES/hosting.po -------------------------------------------------------------------------------- /var/www/locale/de_DE/LC_MESSAGES/hosting.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/var/www/locale/de_DE/LC_MESSAGES/hosting.mo -------------------------------------------------------------------------------- /var/www/locale/de_DE/LC_MESSAGES/hosting.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/var/www/locale/de_DE/LC_MESSAGES/hosting.po -------------------------------------------------------------------------------- /var/www/locale/es/LC_MESSAGES/hosting.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/var/www/locale/es/LC_MESSAGES/hosting.mo -------------------------------------------------------------------------------- /var/www/locale/es/LC_MESSAGES/hosting.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/var/www/locale/es/LC_MESSAGES/hosting.po -------------------------------------------------------------------------------- /var/www/locale/hosting.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/var/www/locale/hosting.pot -------------------------------------------------------------------------------- /var/www/locale/pl/LC_MESSAGES/hosting.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/var/www/locale/pl/LC_MESSAGES/hosting.mo -------------------------------------------------------------------------------- /var/www/locale/pl/LC_MESSAGES/hosting.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/var/www/locale/pl/LC_MESSAGES/hosting.po -------------------------------------------------------------------------------- /var/www/locale/ru/LC_MESSAGES/hosting.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/var/www/locale/ru/LC_MESSAGES/hosting.mo -------------------------------------------------------------------------------- /var/www/locale/ru/LC_MESSAGES/hosting.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/var/www/locale/ru/LC_MESSAGES/hosting.po -------------------------------------------------------------------------------- /var/www/locale/tr/LC_MESSAGES/hosting.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/var/www/locale/tr/LC_MESSAGES/hosting.mo -------------------------------------------------------------------------------- /var/www/locale/tr/LC_MESSAGES/hosting.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/var/www/locale/tr/LC_MESSAGES/hosting.po -------------------------------------------------------------------------------- /var/www/locale/uk/LC_MESSAGES/hosting.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/var/www/locale/uk/LC_MESSAGES/hosting.mo -------------------------------------------------------------------------------- /var/www/locale/uk/LC_MESSAGES/hosting.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/var/www/locale/uk/LC_MESSAGES/hosting.po -------------------------------------------------------------------------------- /var/www/mail/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/var/www/mail/index.php -------------------------------------------------------------------------------- /var/www/setup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/var/www/setup.php -------------------------------------------------------------------------------- /var/www/setup_chroot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/var/www/setup_chroot.sh -------------------------------------------------------------------------------- /var/www/skel/www/index.hosting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWin/hosting/HEAD/var/www/skel/www/index.hosting.html --------------------------------------------------------------------------------