Ik heb CUPS v2.4.2 geïnstalleerd op een Ubuntu server 22.10. Ik wil CUPS gebruiken als printserver voor het lokale netwerk. Ik heb de webinterface aangepast naar HTTPS, en een gekocht SSL certificaat toegevoegd.
Echter wijzen nu verschillende links in de webinterface (Printer admin, de dropdown boxes in de settings van een printer...) naar ipps://localhost/printers/
Mis ik een of andere instelling zodat CUPS de toegekende domeinnaam gebruikt in z'n webinterface?
Mijn cupsd.conf:
(Echte hostname is op strategische plaatsen vervangen door mijn.domain.url ;-) )
Kort samengevat: Interface luistert op 443, certificaat wordt prima ingelezen en werkt ook correct, ServerAlias staat correct ingesteld.
Wat zie ik over het hoofd?
Many thanks!
Echter wijzen nu verschillende links in de webinterface (Printer admin, de dropdown boxes in de settings van een printer...) naar ipps://localhost/printers/
Mis ik een of andere instelling zodat CUPS de toegekende domeinnaam gebruikt in z'n webinterface?
Mijn cupsd.conf:
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
| LogLevel warn PageLogFormat MaxLogSize 1m ErrorPolicy retry-job # Only listen for connections from the local machine. #Listen localhost:443 Listen mijn.domain.url:443 Listen /run/cups/cups.sock Browsing On BrowseLocalProtocols dnssd BrowseAddress All DefaultAuthType Basic WebInterface Yes IdleExitTimeout 60 DefaultEncryption Required ServerCertificate /etc/cups/ssl/mijn.domain.url.crt ServerKey /etc/cups/ssl/mijn.domain.url.key SSLPort 443 ServerAlias mijn.domain.url CreateSelfSignedCerts no <Location /> # Restrict access to the server... Order allow,deny Allow 172.16.20.* </Location> <Location /admin> </Location> <Location /admin/conf> AuthType Default Require user @SYSTEM </Location> <Location /admin/log> AuthType Default Require user @SYSTEM </Location> ... Hier volgt de standaard job config, niks aan veranderd |
(Echte hostname is op strategische plaatsen vervangen door mijn.domain.url ;-) )
Kort samengevat: Interface luistert op 443, certificaat wordt prima ingelezen en werkt ook correct, ServerAlias staat correct ingesteld.
Wat zie ik over het hoofd?
Many thanks!