mirror of
https://github.com/certbot/certbot.git
synced 2026-05-28 04:34:11 -04:00
* Migrate pkg_resources API related to resources to importlib_resources * Fix lint and mypy + pin lexicon * Update filterwarnings * Update oldest tests requirements * Update pinned dependencies * Fix for modern versions of python * Fix assets load in nginx integration tests * Fix a warning * Isolate static generation from importlib.resource into a private function --------- Co-authored-by: Adrien Ferrand <adrien.ferrand@amadeus.com>
145 lines
4.7 KiB
Python
145 lines
4.7 KiB
Python
# -*- coding: utf-8 -*-
|
|
"""General purpose nginx test configuration generator."""
|
|
import atexit
|
|
import getpass
|
|
import sys
|
|
from contextlib import ExitStack
|
|
from typing import Optional
|
|
|
|
if sys.version_info >= (3, 9): # pragma: no cover
|
|
import importlib.resources as importlib_resources
|
|
else: # pragma: no cover
|
|
import importlib_resources
|
|
|
|
|
|
def construct_nginx_config(nginx_root: str, nginx_webroot: str, http_port: int, https_port: int,
|
|
other_port: int, default_server: bool, key_path: Optional[str] = None,
|
|
cert_path: Optional[str] = None, wtf_prefix: str = 'le') -> str:
|
|
"""
|
|
This method returns a full nginx configuration suitable for integration tests.
|
|
:param str nginx_root: nginx root configuration path
|
|
:param str nginx_webroot: nginx webroot path
|
|
:param int http_port: HTTP port to listen on
|
|
:param int https_port: HTTPS port to listen on
|
|
:param int other_port: other HTTP port to listen on
|
|
:param bool default_server: True to set a default server in nginx config, False otherwise
|
|
:param str key_path: the path to a SSL key
|
|
:param str cert_path: the path to a SSL certificate
|
|
:param str wtf_prefix: the prefix to use in all domains handled by this nginx config
|
|
:return: a string containing the full nginx configuration
|
|
:rtype: str
|
|
"""
|
|
if not key_path:
|
|
file_manager = ExitStack()
|
|
atexit.register(file_manager.close)
|
|
ref = importlib_resources.files('certbot_integration_tests').joinpath('assets', 'key.pem')
|
|
key_path = str(file_manager.enter_context(importlib_resources.as_file(ref)))
|
|
|
|
if not cert_path:
|
|
file_manager = ExitStack()
|
|
atexit.register(file_manager.close)
|
|
ref = importlib_resources.files('certbot_integration_tests').joinpath('assets', 'cert.pem')
|
|
cert_path = str(file_manager.enter_context(importlib_resources.as_file(ref)))
|
|
|
|
return '''\
|
|
# This error log will be written regardless of server scope error_log
|
|
# definitions, so we have to set this here in the main scope.
|
|
#
|
|
# Even doing this, Nginx will still try to create the default error file, and
|
|
# log a non-fatal error when it fails. After that things will work, however.
|
|
error_log {nginx_root}/error.log;
|
|
|
|
# The pidfile will be written to /var/run unless this is set.
|
|
pid {nginx_root}/nginx.pid;
|
|
|
|
user {user};
|
|
worker_processes 1;
|
|
|
|
events {{
|
|
worker_connections 1024;
|
|
}}
|
|
|
|
# “This comment contains valid Unicode”.
|
|
|
|
http {{
|
|
# Set an array of temp, cache and log file options that will otherwise default to
|
|
# restricted locations accessible only to root.
|
|
client_body_temp_path {nginx_root}/client_body;
|
|
fastcgi_temp_path {nginx_root}/fastcgi_temp;
|
|
proxy_temp_path {nginx_root}/proxy_temp;
|
|
#scgi_temp_path {nginx_root}/scgi_temp;
|
|
#uwsgi_temp_path {nginx_root}/uwsgi_temp;
|
|
access_log {nginx_root}/error.log;
|
|
|
|
# This should be turned off in a Virtualbox VM, as it can cause some
|
|
# interesting issues with data corruption in delivered files.
|
|
sendfile off;
|
|
|
|
tcp_nopush on;
|
|
tcp_nodelay on;
|
|
keepalive_timeout 65;
|
|
types_hash_max_size 2048;
|
|
|
|
#include /etc/nginx/mime.types;
|
|
index index.html index.htm index.php;
|
|
|
|
log_format main '$remote_addr - $remote_user [$time_local] $status '
|
|
'"$request" $body_bytes_sent "$http_referer" '
|
|
'"$http_user_agent" "$http_x_forwarded_for"';
|
|
|
|
default_type application/octet-stream;
|
|
|
|
server {{
|
|
# IPv4.
|
|
listen {http_port} {default_server};
|
|
# IPv6.
|
|
listen [::]:{http_port} {default_server};
|
|
server_name nginx.{wtf_prefix}.wtf nginx2.{wtf_prefix}.wtf;
|
|
|
|
root {nginx_webroot};
|
|
|
|
location / {{
|
|
# First attempt to serve request as file, then as directory, then fall
|
|
# back to index.html.
|
|
try_files $uri $uri/ /index.html;
|
|
}}
|
|
}}
|
|
|
|
server {{
|
|
listen {http_port};
|
|
listen [::]:{http_port};
|
|
server_name nginx3.{wtf_prefix}.wtf;
|
|
|
|
root {nginx_webroot};
|
|
|
|
location /.well-known/ {{
|
|
return 404;
|
|
}}
|
|
|
|
return 301 https://$host$request_uri;
|
|
}}
|
|
|
|
server {{
|
|
listen {other_port};
|
|
listen [::]:{other_port};
|
|
server_name nginx4.{wtf_prefix}.wtf nginx5.{wtf_prefix}.wtf;
|
|
}}
|
|
|
|
server {{
|
|
listen {http_port};
|
|
listen [::]:{http_port};
|
|
listen {https_port} ssl;
|
|
listen [::]:{https_port} ssl;
|
|
if ($scheme != "https") {{
|
|
return 301 https://$host$request_uri;
|
|
}}
|
|
server_name nginx6.{wtf_prefix}.wtf nginx7.{wtf_prefix}.wtf;
|
|
|
|
ssl_certificate {cert_path};
|
|
ssl_certificate_key {key_path};
|
|
}}
|
|
}}
|
|
'''.format(nginx_root=nginx_root, nginx_webroot=nginx_webroot, user=getpass.getuser(),
|
|
http_port=http_port, https_port=https_port, other_port=other_port,
|
|
default_server='default_server' if default_server else '', wtf_prefix=wtf_prefix,
|
|
key_path=key_path, cert_path=cert_path)
|