Jump to content
Froxlor Forum

d00p

Administrators
  • Posts

    10327
  • Joined

  • Last visited

  • Days Won

    43

Everything posted by d00p

  1. compatible, sure, there are just no config-templates. You can still just adjust jessie configs for example (if you're firm in services configuration)
  2. Dear Froxlor Community, as our latest stable release of froxlor is quite established now, it is time for some minor bugfixes and improvements. Changes in 0.9.38.8: + added OCSP stapling support for apache2 and nginx + added libnss-extrausers support for debian/ubuntu users + added http2 support for froxlor-vhost and per-domain and domain-import + added setting to disable LE self-check + #416: added letsencrypt, HSTS settings, oscp-stapling and phpenabled-flag to Domain-import + #464: added simple smtp-settings test-page ~ #412: fixed libnss config ~ #434: allow non fqdn CNAME entries (froxlor appends zone's domain automatically if there's no trailing dot) ~ #447: fixed wildcard entries in dns editor ~ #472: generate multiline txt-record if content is too long ~ #475: corrected setting for php-fpm peardir ~ #479: removed each() keyword as it is deprecated as of php-7.2 ~ #485: added default/global directory options in apache regardless of whether fcgid/fpm is being used or not ~ #496: explicitly deactivate TLS (and auto-tls) in phpMailer when setting use-tls is OFF ~ #1697: allow underscore in DNS labels ~ #1720: do not show full path of file on php-error ~ #1726: use correct pagination in admin-log/customer-log ~ #1728: clearify field label for domain termination date ~ fixed phpenabled flag for new subdomains added by customers ~ fixed auto-update of database in cronjob if activated ~ fixed ssl integration in lighttpd You can see all changes on Github at https://github.com/Froxlor/Froxlor/compare/0.9.38.7...0.9.38.8 Download: 0.9.38.8 Note: Gentoo-ebuild and Debian packages will be released shortly as always. Visit http://www.froxlor.org or join our IRC channel #froxlor on irc.freenode.net. Thank you, d00p
  3. hä? Wie wie muss ich das einrichten? Du aktivierst Let's Encrypt in den Einstellungen (global), du musst natürlich die acme.conf einrichten (konfiguration -> webserver) damit der globale Alias existiert und Ende. das wars. Entsprechend musst du natürlich auch einer SSL-enabled domain noch sagen, sie soll let's encrypt nutzen (domain -> bearbeiten)
  4. well, if you'd specify your issues one might be able to help. What do you mean by "FCGI users not getting configured"? users don't get configured...
  5. I'm compatible - there are just no configure-templates for it yet
  6. Das ist seit debian 8 nicht mehr bei debian dabei. Nutze am besten für debian 8 und 9 libnss-extrausers, dafür auch in froxlor den support aktivieren in den einstellungen
  7. Nicht alles kann man mit Geld kaufen, mir fehlt leider die Zeit
  8. Ja es gibt nur ein reload Command...was du dann in diesem Script was du da angibst so alles machst ist dir überlassen, configs schieben, Dienste stoppen/starten, etc.
  9. Das man mehrere Instanzen laufen lassen kann ist richtig ja, ich wollte damit sagen, das froxlor es bisher nicht unterstützt. Mit einem custom fpm-reload command/Script kriegt man darf aber hin. Der Kunde oder Admin kann es halt im Panel nicht wählen
  10. Too less information, what is your EXACT problem, provide steps to reproduce/test, give information about setup, distribution, vhost-content, etc.etc.etc. please
  11. As said, cant tell without looking at your Box.
  12. The path in the error Log seems to come dein the Standard www.conf poolconfig by fpm ...no idea though why it is using this Pool instead of the given one without looking on the Server
  13. The handler is just a Name, See corresponding fastcgi conf in Apache, the other Thing is that your vhosts clearly says use "/var/lib/apache2/fastcgi/froxlor.panel-xxx.yourvserver.net-php-fpm.socket" and Not " /run/php/php7.1-fpm.sock" so there must be something wrong on your side
  14. Doesnt look like froxlors fpm config. Can you nopaste the vhost configs starting with 10_froxlor*.conf?
  15. Of course we restart bind. Sounds like you did not configure it correctly. This has been verified to work judt fine by many people from the community
  16. Dear Froxlor Community, we are proud to announce the final release of version 0.9.37 which includes a complete DNS editor for domains and also supports PowerDNS in standalone mode as nameserver. DNS-Editor Admins and customers are now able to edit the DNS settings of domains. You can freely add and remove entries - froxlor will always ensure that the basic required entries are present. These are NS, MX and A/AAAA. They will always be generated if not overwritten by a custom entry. The access to the DNS-editor can be managed on a per-customer base by the admin. Only domains that have the nameserver-flag enabled and which are allowed to be edited by the customer can have DNS records. Please keep in mind that we limited the record-types to the following list: A, AAAA, CNAME, MX, NS, SRV, TXT We are aware that DNS is way more that that and that there is always a bunch of users who need other types - patches and pull-requests are always welcomed ;-) NOTE: If you are using <=PHP-5.3 you will need to patch the file lib/functions/dns/function.CreateDomainZone.php as follows as we missed using the 'long' array syntax there (will be fixed in the first maintenance release). See https://github.com/Froxlor/Froxlor/compare/51152ef0262f...11d358133e57 --- a/lib/functions/dns/function.createDomainZone.php +++ b/lib/functions/dns/function.createDomainZone.php @@ -55,8 +55,8 @@ function createDomainZone($domain_id, $froxlorhostname = false, $isMainButSubTo if ($domain['isemaildomain'] === '1') { addRequiredEntry('@', 'MX', $required_entries); if (Settings::Get('system.dns_createmailentry')) { - foreach(['imap', 'pop3', 'mail', 'smtp'] as $record) { - foreach(['AAAA', 'A'] as $type) { + foreach(array('imap', 'pop3', 'mail', 'smtp') as $record) { + foreach(array('AAAA', 'A') as $type) { addRequiredEntry($record, $type, $required_entries); } } PowerDNS As alternative to bind, you are now able to use PowerDNS (pdns) as nameserver. Attention: you will have to create the powerdns database yourself! When using froxlor's configuraton template for powerdns, froxlor will use powerdns' configuration file to read the database-user-credentials to be able to add/edit/remove zones and records. So double check that all path's are correct. Minor enhancements You can now also customize the global customer-docroot options when using apache webserver and mod_php. Please be aware that no syntax-checking is done (as known from 'specialsettings' or 'custom vhost-content'). The warn-emails about traffic and web-usage can now be enabled and disabled separately by setting the required percentage to 0. In addition to that, admins can now specify whether specific menu-items are hidden from the customer (regardless of resources assigned to the customer). These settings are global and valid for all customers. Changes in 0.9.37: You can see all (minor) changes in our bugtracker at https://redmine.froxlor.org/versions/72 and https://redmine.froxlor.org/versions/74 Download: 0.9.37 Note: Gentoo-ebuild and Debian packages will be available shortly as usual. Visit http://www.froxlor.org or join our IRC channel #froxlor on irc.freenode.net. Thank you, d00p
  17. Dear Froxlor Community, we are proud to announce the first release candidate for our upcoming version 0.9.37 which includes a complete DNS editor for Domain and also supports PowerDNS in standalone mode as nameserver. You can now also customize the customer-docroot options when using apache webserver and mod_php and activate the warn-emails about traffic and web-usage separately Please test the DNS feature thoroughly and give feedback. Thanks in advance. Changes in 0.9.37-rc1: You can see all (minor) changes in our bugtracker at https://redmine.froxlor.org/versions/72 Download: 0.9.37-rc1 Note: Gentoo users might use the 9999 ebuild for a live-version. There will be no Debian packages for release-candidates. Visit http://www.froxlor.org or join our IRC channel #froxlor on irc.freenode.net. Thank you, d00p
  18. Well, nothing like that exists
×
×
  • Create New...