summaryrefslogtreecommitdiffstats
path: root/roles/nginx/meta/argument_specs.yml
blob: 7629c7fa7b4f3afabdf42c10e8ef9e1657bd4e66 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
---
argument_specs:
  main:
    options:
      nginx_server_name:
        type: "str"
        description: "The server name for nginx configuration"
        default: "{{ ansible_facts['hostname'] }}.local"
      nginx_worker_processes:
        type: "int"
        description: "Number of nginx worker processes"
        default: 2
      nginx_worker_connections:
        type: "int"
        description: "Number of worker connections per process"
        default: 512
      nginx_ssl_certificate:
        type: "str"
        description: "Path to SSL certificate file"
        default: "/etc/ssl/certs/nginx-selfsigned.crt"
      nginx_ssl_certificate_key:
        type: "str"
        description: "Path to SSL private key file"
        default: "/etc/ssl/private/nginx-selfsigned.key"