Skip to content

Commit 88e64c1

Browse files
committed
Add fixes for nginx and IPv6
1 parent 972eed1 commit 88e64c1

File tree

1 file changed

+21
-0
lines changed
  • provision-contest/ansible/roles/icpc_fixes/tasks

1 file changed

+21
-0
lines changed

provision-contest/ansible/roles/icpc_fixes/tasks/main.yml

+21
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,24 @@
1212
- name: Re-order PXEboot
1313
command: efibootmgr -o {{ EFI_ORDER }}
1414
when: EFI_ORDER is defined
15+
16+
- name: IPv6 nginx fixes
17+
block:
18+
- name: Create nginx directory before installation
19+
file:
20+
path: /etc/{{ item }}
21+
state: directory
22+
mode: '0755'
23+
group: root
24+
owner: root
25+
loop:
26+
- nginx
27+
- nginx/sites-enabled
28+
29+
- name: Create nginx default without IPv6 listener
30+
copy:
31+
dest: /etc/nginx/sites-enabled/default
32+
mode: '0644'
33+
group: root
34+
owner: root
35+
content: ""

0 commit comments

Comments
 (0)