Jump to content
Froxlor Forum
  • 0

I am using Froxlor 2.1.9 under the Domain manage.mydomain.com. How to add a Lets Encrypt Certificate for this subdomain?


Chrissie Brown

Question

14 answers to this question

Recommended Posts

  • 0

mach einfach direkt in der DB ein:
 

UPDATE `panel_ipsandports` SET `vhostcontainer` = '1';

und dann stellste in den Froxlor Vhost Einstellungen die Let's Encrypt nummer ein

Link to comment
Share on other sites

  • 0

Ok, this is working now. Thank you, d00p. Maybe some Altlasten :)
 

root@localhost [froxlor2]> select id, port, vhostcontainer from panel_ipsandports;
+----+------+----------------+
| id | port | vhostcontainer |
+----+------+----------------+
|  7 |   80 |              1 |
|  9 |  443 |              0 |
| 10 |   80 |              1 |
| 11 |  443 |              0 |
+----+------+----------------+
4 rows in set (0.000 sec)

root@localhost [froxlor2]> UPDATE `panel_ipsandports` SET `vhostcontainer` = '1';
Query OK, 2 rows affected (0.019 sec)
Rows matched: 4  Changed: 2  Warnings: 0

root@localhost [froxlor2]> select id, port, vhostcontainer from panel_ipsandports;
+----+------+----------------+
| id | port | vhostcontainer |
+----+------+----------------+
|  7 |   80 |              1 |
|  9 |  443 |              1 |
| 10 |   80 |              1 |
| 11 |  443 |              1 |
+----+------+----------------+
4 rows in set (0.000 sec)

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


×
×
  • Create New...