diff --git a/files/nginx-vhost.conf b/files/nginx-vhost.conf new file mode 100644 index 0000000..3271a3d --- /dev/null +++ b/files/nginx-vhost.conf @@ -0,0 +1 @@ +index index.php; diff --git a/tasks/files.yml b/tasks/files.yml index f74242a..90bb533 100644 --- a/tasks/files.yml +++ b/tasks/files.yml @@ -28,6 +28,13 @@ owner: "100999" group: "100999" +- name: Create NGINX vhost file + copy: + src: "nginx-vhost.conf" + dest: "/home/{{ user.name }}/nginx/vhost.d" + owner: "100999" + group: "100999" + - name: Create Compose File template: src: "docker-compose.yml.j2"