initial cleanup server-manager

This commit is contained in:
2020-12-24 14:27:31 +01:00
commit ccd20af081
81 changed files with 2601 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
---
- name: restart nginx
service: name=nginx state=restarted enabled=yes

View File

@@ -0,0 +1,17 @@
---
- name: install nginx
pacman: name=nginx state=present
notify: restart nginx
- name: set /etc/nginx/conf.d
file:
path: /etc/nginx/conf.d
state: directory
mode: 0755
- name: create nginx config file
template: src=nginx.conf dest=/etc/nginx/nginx.conf
notify: restart nginx
- name: flush nginx service
meta: flush_handlers

View File

@@ -0,0 +1,21 @@
worker_processes auto;
events
{
worker_connections 1024;
}
http
{
include mime.types;
default_type text/html;
#access_log /var/log/nginx/access.log main;
error_log /var/log/nginx/error.log debug;
sendfile on;
keepalive_timeout 65;
gzip on;
types_hash_max_size 4096;
include conf.d/*.conf;
}