(self)
| 313 | self._httpd_log_modules.extend(modules) |
| 314 | |
| 315 | def issue_certs(self): |
| 316 | if self._ca is None: |
| 317 | self._ca = HttpdTestCA.create_root(name=self.http_tld, |
| 318 | store_dir=os.path.join(self.server_dir, 'ca'), |
| 319 | key_type="rsa4096") |
| 320 | self._ca.issue_certs(self._cert_specs) |
| 321 | |
| 322 | def setup_httpd(self, setup: HttpdTestSetup = None): |
| 323 | """Create the server environment with config, htdocs and certificates""" |
no test coverage detected