May 1, 2025 update

This commit is contained in:
Sharad Ahlawat
2025-05-01 21:19:17 -07:00
parent a2cdf26594
commit b33d54d723
261 changed files with 2451 additions and 12859 deletions

View File

@ -12,7 +12,7 @@ $CONFIG = array (
'datadirectory' => '/mnt/cloud',
'overwrite.cli.url' => 'https://cloud.ahlawat.com/',
'dbtype' => 'mysql',
'version' => '21.0.3.1',
'version' => '28.0.4.1',
'dbname' => 'nextcloud',
'dbhost' => 'db.ahlawat.com',
'dbport' => '3306',
@ -24,6 +24,7 @@ $CONFIG = array (
'instanceid' => 'oc7suxvjiy9s',
'htaccess.RewriteBase' => '/',
'filelocking.enabled' => 'true',
'memcache.local' => '\OC\Memcache\APCu',
'memcache.locking' => '\\OC\\Memcache\\Redis',
'redis' =>
array (
@ -38,7 +39,7 @@ $CONFIG = array (
'logrotate_size' => '104847600',
'ldapIgnoreNamingRules' => false,
'ldapProviderFactory' => '\\OCA\\User_LDAP\\LDAPProviderFactory',
'mail_smtpmode' => 'smtp',
'mail_smtpmode' => 'sendmail',
'mail_from_address' => 'nobody',
'mail_domain' => 'ahlawat.com',
'mail_smtphost' => '192.168.0.100',
@ -47,5 +48,6 @@ $CONFIG = array (
'theme' => '',
'encryption.legacy_format_support' => false,
'encryption.key_storage_migrated' => false,
'updater.secret' => '$2y$10$jAnC4Ha3RI2CL.IlhYluSeeOuKMT4itq/ViSiH1Q9DciUXfB3YSYS',
'data-fingerprint' => 'a20b20d2fb1221ec403a5f7c65828557',
'mail_sendmailmode' => 'smtp',
);

View File

@ -1,51 +0,0 @@
<?php
$CONFIG = array (
'passwordsalt' => '5OBfApfc/+tJzU/4n+F8e+PzOfAStP',
'secret' => 'IFX9kjXwOk4L21503pLACwa2Dadv9JzHNSu8XsnTogmwb5Tr',
'trusted_domains' =>
array (
0 => 'localhost',
1 => 'cloud.ahlawat.com',
2 => '192.168.0.59',
3 => 'fd01::59',
),
'datadirectory' => '/mnt/cloud',
'overwrite.cli.url' => 'https://cloud.ahlawat.com/',
'dbtype' => 'mysql',
'version' => '21.0.3.1',
'dbname' => 'nextcloud',
'dbhost' => 'db.ahlawat.com',
'dbport' => '3306',
'dbtableprefix' => 'oc_',
'mysql.utf8mb4' => true,
'dbuser' => 'nextcloud',
'dbpassword' => 'mysql__nextcloud',
'installed' => true,
'instanceid' => 'oc7suxvjiy9s',
'htaccess.RewriteBase' => '/',
'filelocking.enabled' => 'true',
'memcache.local' => '\\OC\\Memcache\\APCu',
'memcache.locking' => '\\OC\\Memcache\\Redis',
'redis' =>
array (
'host' => '/tmp/redis.sock',
'port' => 0,
),
'logtimezone' => 'America/Los_Angeles',
'log_type' => 'file',
'logfile' => '/var/log/nextcloud.log',
'loglevel' => 0,
'logrotate_size' => '104847600',
'ldapIgnoreNamingRules' => false,
'ldapProviderFactory' => '\\OCA\\User_LDAP\\LDAPProviderFactory',
'mail_smtpmode' => 'smtp',
'mail_from_address' => 'nobody',
'mail_domain' => 'ahlawat.com',
'mail_smtphost' => '192.168.0.100',
'mail_smtpport' => '25',
'maintenance' => false,
'theme' => '',
'encryption.legacy_format_support' => false,
'encryption.key_storage_migrated' => false,
'updater.secret' => '$2y$10$jAnC4Ha3RI2CL.IlhYluSeeOuKMT4itq/ViSiH1Q9DciUXfB3YSYS',
);

View File

@ -551,6 +551,14 @@ SSLRandomSeed connect builtin
Include etc/apache24/Includes/*.conf
# https://ssl-config.mozilla.org/#server=apache&version=2.4.60&config=intermediate&openssl=3.1.0&guideline=5.7
<VirtualHost *:80>
RewriteEngine On
RewriteCond %{REQUEST_URI} !^/.well-known/acme-challenge/
RewriteRule ^.*$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,QSA,L]
</VirtualHost>
<VirtualHost *:443>
ServerName cloud.ahlawat.com
ServerAlias *.ahlawat.com
@ -559,16 +567,20 @@ Include etc/apache24/Includes/*.conf
DocumentRoot "/usr/local/www/apache24/data/nextcloud/"
# HTTP Strict Transport Security (mod_headers is required) (63072000 seconds)
Header always set Strict-Transport-Security "max-age=63072000"
SSLEngine on
SSLCertificateFile "/mnt/certs/fullchain.pem"
SSLCertificateKeyFile "/mnt/certs/privkey.pem"
#SSLCertificateChainFile "/mnt/certs/fullchain.pem"
SSLProtocol all -SSLv3 -TLSv1 -TLSv1.1
SSLCipherSuite ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384
SSLHonorCipherOrder off
SSLSessionTickets off
SSLOptions +StrictRequire
# SSLCompression off
# SSLCertificateChainFile "/mnt/certs/fullchain.pem"
SSLCACertificateFile "/mnt/certs/cacert.pem"
SSLProtocol -all +TLSv1.2 +TLSv1.3
SSLOpenSSLConfCmd Curves X25519:prime256v1:secp384r1
SSLCipherSuite ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384:DHE-RSA-CHACHA20-POLY1305
SSLHonorCipherOrder off
SSLSessionTickets off
RewriteEngine On
RewriteCond %{HTTP:Authorization} ^(.*)

View File

@ -1,43 +1,46 @@
pkgp-freebsd-pkg____apache24-2.4.54
pkgp-freebsd-pkg____bash-5.2.9
pkgp-freebsd-pkg____bash-completion-2.11_1,2
pkgp-freebsd-pkg____ffmpeg-4.4.3_1,1
pkgp-freebsd-pkg____nano-6.4
pkgp-freebsd-pkg____php80-8.0.25
pkgp-freebsd-pkg____php80-bcmath-8.0.25
pkgp-freebsd-pkg____php80-bz2-8.0.25
pkgp-freebsd-pkg____php80-ctype-8.0.25
pkgp-freebsd-pkg____php80-curl-8.0.25
pkgp-freebsd-pkg____php80-dom-8.0.25
pkgp-freebsd-pkg____php80-exif-8.0.25
pkgp-freebsd-pkg____php80-fileinfo-8.0.25
pkgp-freebsd-pkg____php80-filter-8.0.25
pkgp-freebsd-pkg____php80-ftp-8.0.25
pkgp-freebsd-pkg____php80-gd-8.0.25
pkgp-freebsd-pkg____php80-gmp-8.0.25
pkgp-freebsd-pkg____php80-iconv-8.0.25
pkgp-freebsd-pkg____php80-imap-8.0.25
pkgp-freebsd-pkg____php80-intl-8.0.25_1
pkgp-freebsd-pkg____php80-ldap-8.0.25
pkgp-freebsd-pkg____php80-mbstring-8.0.25
pkgp-freebsd-pkg____php80-mysqli-8.0.25
pkgp-freebsd-pkg____php80-opcache-8.0.25
pkgp-freebsd-pkg____php80-pcntl-8.0.25
pkgp-freebsd-pkg____php80-pdo-8.0.25
pkgp-freebsd-pkg____php80-pdo_mysql-8.0.25
pkgp-freebsd-pkg____php80-pecl-APCu-5.1.22
pkgp-freebsd-pkg____php80-pecl-imagick-3.7.0
pkgp-freebsd-pkg____php80-pecl-mcrypt-1.0.5
pkgp-freebsd-pkg____php80-pecl-redis-5.3.5
pkgp-freebsd-pkg____php80-posix-8.0.25
pkgp-freebsd-pkg____php80-session-8.0.25
pkgp-freebsd-pkg____php80-simplexml-8.0.25
pkgp-freebsd-pkg____php80-xml-8.0.25
pkgp-freebsd-pkg____php80-xmlreader-8.0.25
pkgp-freebsd-pkg____php80-xmlwriter-8.0.25
pkgp-freebsd-pkg____php80-xsl-8.0.25
pkgp-freebsd-pkg____php80-zip-8.0.25
pkgp-freebsd-pkg____php80-zlib-8.0.25
pkgp-freebsd-pkg____pkg-1.18.4
pkgp-freebsd-pkg____redis-7.0.5
pkgp-freebsd-pkg____sudo-1.9.12p1
pkgp-freebsd-pkg____apache24-2.4.63
pkgp-freebsd-pkg____bash-5.2.37
pkgp-freebsd-pkg____bash-completion-2.14.0,2
pkgp-freebsd-pkg____ffmpeg-6.1.2_10,1
pkgp-freebsd-pkg____nano-8.4
pkgp-freebsd-pkg____php83-8.3.20
pkgp-freebsd-pkg____php83-bcmath-8.3.20
pkgp-freebsd-pkg____php83-bz2-8.3.20
pkgp-freebsd-pkg____php83-ctype-8.3.20
pkgp-freebsd-pkg____php83-curl-8.3.20
pkgp-freebsd-pkg____php83-dom-8.3.20
pkgp-freebsd-pkg____php83-exif-8.3.20
pkgp-freebsd-pkg____php83-fileinfo-8.3.20
pkgp-freebsd-pkg____php83-filter-8.3.20
pkgp-freebsd-pkg____php83-ftp-8.3.20
pkgp-freebsd-pkg____php83-gd-8.3.20
pkgp-freebsd-pkg____php83-gmp-8.3.20
pkgp-freebsd-pkg____php83-iconv-8.3.20
pkgp-freebsd-pkg____php83-imap-8.3.20
pkgp-freebsd-pkg____php83-intl-8.3.20
pkgp-freebsd-pkg____php83-ldap-8.3.20
pkgp-freebsd-pkg____php83-mbstring-8.3.20
pkgp-freebsd-pkg____php83-mysqli-8.3.20
pkgp-freebsd-pkg____php83-opcache-8.3.20
pkgp-freebsd-pkg____php83-pcntl-8.3.20
pkgp-freebsd-pkg____php83-pdo-8.3.20
pkgp-freebsd-pkg____php83-pdo_mysql-8.3.20
pkgp-freebsd-pkg____php83-pear-horde-Horde_HashTable-1.2.6
pkgp-freebsd-pkg____php83-pecl-APCu-5.1.24
pkgp-freebsd-pkg____php83-pecl-imagick-3.7.0_5
pkgp-freebsd-pkg____php83-pecl-mcrypt-1.0.7
pkgp-freebsd-pkg____php83-pecl-redis-6.2.0
pkgp-freebsd-pkg____php83-posix-8.3.20
pkgp-freebsd-pkg____php83-session-8.3.20
pkgp-freebsd-pkg____php83-simplexml-8.3.20
pkgp-freebsd-pkg____php83-sodium-8.3.20
pkgp-freebsd-pkg____php83-sysvsem-8.3.20
pkgp-freebsd-pkg____php83-xml-8.3.20
pkgp-freebsd-pkg____php83-xmlreader-8.3.20
pkgp-freebsd-pkg____php83-xmlwriter-8.3.20
pkgp-freebsd-pkg____php83-xsl-8.3.20
pkgp-freebsd-pkg____php83-zip-8.3.20
pkgp-freebsd-pkg____php83-zlib-8.3.20
pkgp-freebsd-pkg____pkg-2.1.2
pkgp-freebsd-pkg____redis-7.4.2
pkgp-freebsd-pkg____sudo-1.9.16p2_1

View File

@ -1,43 +1,46 @@
pkgp-freebsd-pkg____apache24-2.4.54
pkgp-freebsd-pkg____bash-5.2.12
pkgp-freebsd-pkg____bash-completion-2.11_2,2
pkgp-freebsd-pkg____ffmpeg-4.4.3_1,1
pkgp-freebsd-pkg____nano-7.0
pkgp-freebsd-pkg____php80-8.0.25
pkgp-freebsd-pkg____php80-bcmath-8.0.25
pkgp-freebsd-pkg____php80-bz2-8.0.25
pkgp-freebsd-pkg____php80-ctype-8.0.25
pkgp-freebsd-pkg____php80-curl-8.0.25
pkgp-freebsd-pkg____php80-dom-8.0.25
pkgp-freebsd-pkg____php80-exif-8.0.25
pkgp-freebsd-pkg____php80-fileinfo-8.0.25
pkgp-freebsd-pkg____php80-filter-8.0.25
pkgp-freebsd-pkg____php80-ftp-8.0.25
pkgp-freebsd-pkg____php80-gd-8.0.25
pkgp-freebsd-pkg____php80-gmp-8.0.25
pkgp-freebsd-pkg____php80-iconv-8.0.25
pkgp-freebsd-pkg____php80-imap-8.0.25
pkgp-freebsd-pkg____php80-intl-8.0.25_1
pkgp-freebsd-pkg____php80-ldap-8.0.25
pkgp-freebsd-pkg____php80-mbstring-8.0.25
pkgp-freebsd-pkg____php80-mysqli-8.0.25
pkgp-freebsd-pkg____php80-opcache-8.0.25
pkgp-freebsd-pkg____php80-pcntl-8.0.25
pkgp-freebsd-pkg____php80-pdo-8.0.25
pkgp-freebsd-pkg____php80-pdo_mysql-8.0.25
pkgp-freebsd-pkg____php80-pecl-APCu-5.1.22
pkgp-freebsd-pkg____php80-pecl-imagick-3.7.0
pkgp-freebsd-pkg____php80-pecl-mcrypt-1.0.5
pkgp-freebsd-pkg____php80-pecl-redis-5.3.5
pkgp-freebsd-pkg____php80-posix-8.0.25
pkgp-freebsd-pkg____php80-session-8.0.25
pkgp-freebsd-pkg____php80-simplexml-8.0.25
pkgp-freebsd-pkg____php80-xml-8.0.25
pkgp-freebsd-pkg____php80-xmlreader-8.0.25
pkgp-freebsd-pkg____php80-xmlwriter-8.0.25
pkgp-freebsd-pkg____php80-xsl-8.0.25
pkgp-freebsd-pkg____php80-zip-8.0.25
pkgp-freebsd-pkg____php80-zlib-8.0.25
pkgp-freebsd-pkg____pkg-1.18.4
pkgp-freebsd-pkg____redis-7.0.5
pkgp-freebsd-pkg____sudo-1.9.12p1
pkgp-freebsd-pkg____apache24-2.4.63
pkgp-freebsd-pkg____bash-5.2.37
pkgp-freebsd-pkg____bash-completion-2.14.0,2
pkgp-freebsd-pkg____ffmpeg-6.1.2_10,1
pkgp-freebsd-pkg____nano-8.4
pkgp-freebsd-pkg____php83-8.3.20
pkgp-freebsd-pkg____php83-bcmath-8.3.20
pkgp-freebsd-pkg____php83-bz2-8.3.20
pkgp-freebsd-pkg____php83-ctype-8.3.20
pkgp-freebsd-pkg____php83-curl-8.3.20
pkgp-freebsd-pkg____php83-dom-8.3.20
pkgp-freebsd-pkg____php83-exif-8.3.20
pkgp-freebsd-pkg____php83-fileinfo-8.3.20
pkgp-freebsd-pkg____php83-filter-8.3.20
pkgp-freebsd-pkg____php83-ftp-8.3.20
pkgp-freebsd-pkg____php83-gd-8.3.20
pkgp-freebsd-pkg____php83-gmp-8.3.20
pkgp-freebsd-pkg____php83-iconv-8.3.20
pkgp-freebsd-pkg____php83-imap-8.3.20
pkgp-freebsd-pkg____php83-intl-8.3.20
pkgp-freebsd-pkg____php83-ldap-8.3.20
pkgp-freebsd-pkg____php83-mbstring-8.3.20
pkgp-freebsd-pkg____php83-mysqli-8.3.20
pkgp-freebsd-pkg____php83-opcache-8.3.20
pkgp-freebsd-pkg____php83-pcntl-8.3.20
pkgp-freebsd-pkg____php83-pdo-8.3.20
pkgp-freebsd-pkg____php83-pdo_mysql-8.3.20
pkgp-freebsd-pkg____php83-pear-horde-Horde_HashTable-1.2.6
pkgp-freebsd-pkg____php83-pecl-APCu-5.1.24
pkgp-freebsd-pkg____php83-pecl-imagick-3.7.0_5
pkgp-freebsd-pkg____php83-pecl-mcrypt-1.0.7
pkgp-freebsd-pkg____php83-pecl-redis-6.2.0
pkgp-freebsd-pkg____php83-posix-8.3.20
pkgp-freebsd-pkg____php83-session-8.3.20
pkgp-freebsd-pkg____php83-simplexml-8.3.20
pkgp-freebsd-pkg____php83-sodium-8.3.20
pkgp-freebsd-pkg____php83-sysvsem-8.3.20
pkgp-freebsd-pkg____php83-xml-8.3.20
pkgp-freebsd-pkg____php83-xmlreader-8.3.20
pkgp-freebsd-pkg____php83-xmlwriter-8.3.20
pkgp-freebsd-pkg____php83-xsl-8.3.20
pkgp-freebsd-pkg____php83-zip-8.3.20
pkgp-freebsd-pkg____php83-zlib-8.3.20
pkgp-freebsd-pkg____pkg-2.1.2
pkgp-freebsd-pkg____redis-7.4.2
pkgp-freebsd-pkg____sudo-1.9.16p2_1

View File

@ -1 +1 @@
apache24 bash bash-completion ffmpeg nano php80 php80-bcmath php80-bz2 php80-ctype php80-curl php80-dom php80-exif php80-fileinfo php80-filter php80-ftp php80-gd php80-gmp php80-iconv php80-imap php80-intl php80-ldap php80-mbstring php80-mysqli php80-opcache php80-pcntl php80-pdo php80-pdo_mysql php80-pecl-APCu php80-pecl-imagick php80-pecl-mcrypt php80-pecl-redis php80-posix php80-session php80-simplexml php80-xml php80-xmlreader php80-xmlwriter php80-xsl php80-zip php80-zlib pkg redis sudo
apache24 bash bash-completion ffmpeg nano php83 php83-bcmath php83-bz2 php83-ctype php83-curl php83-dom php83-exif php83-fileinfo php83-filter php83-ftp php83-gd php83-gmp php83-iconv php83-imap php83-intl php83-ldap php83-mbstring php83-mysqli php83-opcache php83-pcntl php83-pdo php83-pdo_mysql php83-pear-horde-Horde_HashTable php83-pecl-APCu php83-pecl-imagick php83-pecl-mcrypt php83-pecl-redis php83-posix php83-session php83-simplexml php83-sodium php83-sysvsem php83-xml php83-xmlreader php83-xmlwriter php83-xsl php83-zip php83-zlib pkg redis sudo

View File

@ -1 +1 @@
apache24 bash bash-completion ffmpeg nano php80 php80-bcmath php80-bz2 php80-ctype php80-curl php80-dom php80-exif php80-fileinfo php80-filter php80-ftp php80-gd php80-gmp php80-iconv php80-imap php80-intl php80-ldap php80-mbstring php80-mysqli php80-opcache php80-pcntl php80-pdo php80-pdo_mysql php80-pecl-APCu php80-pecl-imagick php80-pecl-mcrypt php80-pecl-redis php80-posix php80-session php80-simplexml php80-xml php80-xmlreader php80-xmlwriter php80-xsl php80-zip php80-zlib pkg redis sudo
apache24 bash bash-completion ffmpeg nano php83 php83-bcmath php83-bz2 php83-ctype php83-curl php83-dom php83-exif php83-fileinfo php83-filter php83-ftp php83-gd php83-gmp php83-iconv php83-imap php83-intl php83-ldap php83-mbstring php83-mysqli php83-opcache php83-pcntl php83-pdo php83-pdo_mysql php83-pear-horde-Horde_HashTable php83-pecl-APCu php83-pecl-imagick php83-pecl-mcrypt php83-pecl-redis php83-posix php83-session php83-simplexml php83-sodium php83-sysvsem php83-xml php83-xmlreader php83-xmlwriter php83-xsl php83-zip php83-zlib pkg redis sudo