mirror of
https://github.com/trailofbits/algo.git
synced 2025-09-04 19:13:04 +02:00
fixed iOS issues
This commit is contained in:
parent
a470671292
commit
0f40bd445c
4 changed files with 6 additions and 6 deletions
|
@ -2,8 +2,8 @@
|
|||
|
||||
# Add as many users as you want for your VPN server here
|
||||
users:
|
||||
- dan
|
||||
- jack
|
||||
- akirilov
|
||||
- kimla
|
||||
|
||||
# Add an email address to send logs if you're using auditd for monitoring.
|
||||
# Avoid using '+' in your email address otherwise auditd will fail to start.
|
||||
|
|
|
@ -197,7 +197,7 @@
|
|||
chdir: "configs/{{ IP_subject_alt_name }}/pki/"
|
||||
creates: certs/{{ item }}_crt_generated
|
||||
environment:
|
||||
subjectAltName: "DNS:{{ IP_subject_alt_name }}"
|
||||
subjectAltName: "DNS:{{ IP_subject_alt_name }}_{{ item }},IP:{{ IP_subject_alt_name }}"
|
||||
with_items: "{{ users }}"
|
||||
|
||||
- name: Build the client's p12
|
||||
|
|
|
@ -86,7 +86,7 @@
|
|||
<integer>1440</integer>
|
||||
</dict>
|
||||
<key>LocalIdentifier</key>
|
||||
<string>{{ item.0 }}</string>
|
||||
<string>{{ IP_subject_alt_name }}_{{ item.0 }}</string>
|
||||
<key>PayloadCertificateUUID</key>
|
||||
<string>{{ pkcs12_PayloadCertificateUUID }}</string>
|
||||
<key>CertificateType</key>
|
||||
|
|
|
@ -71,7 +71,7 @@
|
|||
chdir: "configs/{{ IP_subject_alt_name }}/pki/"
|
||||
creates: certs/{{ item }}_crt_generated
|
||||
environment:
|
||||
subjectAltName: "DNS:{{ IP_subject_alt_name }}"
|
||||
subjectAltName: "DNS:{{ IP_subject_alt_name }}_{{ item }},IP:{{ IP_subject_alt_name }}"
|
||||
with_items: "{{ users }}"
|
||||
|
||||
- name: Build the client's p12
|
||||
|
@ -110,7 +110,7 @@
|
|||
chdir: "configs/{{ IP_subject_alt_name }}/pki/"
|
||||
creates: crl/{{ item }}_revoked
|
||||
environment:
|
||||
subjectAltName: "DNS:{{ IP_subject_alt_name }}"
|
||||
subjectAltName: "DNS:{{ IP_subject_alt_name }}_{{ item }},IP:{{ IP_subject_alt_name }}"
|
||||
when: item not in users
|
||||
with_items: "{{ valid_certs.stdout_lines }}"
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue