From e5a64b1846725bf45779d60d60c48dddafb9b513 Mon Sep 17 00:00:00 2001 From: Valentin CZERYBA Date: Sat, 21 Jan 2023 18:32:20 +0100 Subject: [PATCH] add nginx.conf and deploy it --- roles/deploy-web/files/gouter | 2 +- roles/deploy-web/files/nginx.conf | 85 +++++++++++++++++++++++++++++++ roles/deploy-web/tasks/deploy.yml | 9 ++++ 3 files changed, 95 insertions(+), 1 deletion(-) create mode 100644 roles/deploy-web/files/nginx.conf diff --git a/roles/deploy-web/files/gouter b/roles/deploy-web/files/gouter index 6574a28..7a0b097 100644 --- a/roles/deploy-web/files/gouter +++ b/roles/deploy-web/files/gouter @@ -1,6 +1,6 @@ server { #gzip_static off; - access_log /var/log/nginx/clarissa_access.log; + access_log /var/log/nginx/clarissa_access.log main; error_log /var/log/nginx/clarissa_error.log; server_name clarissariviere.com clarissariviere.fr www.clarissariviere.fr www.clarissariviere.com; add_header 'Content-Security-Policy' 'upgrade-insecure-requests'; diff --git a/roles/deploy-web/files/nginx.conf b/roles/deploy-web/files/nginx.conf new file mode 100644 index 0000000..28a7928 --- /dev/null +++ b/roles/deploy-web/files/nginx.conf @@ -0,0 +1,85 @@ +user www-data; +worker_processes 2; +pid /run/nginx.pid; +include /etc/nginx/modules-enabled/*.conf; + +events { + worker_connections 768; + # multi_accept on; +} + +http { + + ## + # Basic Settings + ## + + sendfile on; + tcp_nopush on; + tcp_nodelay on; + keepalive_timeout 65; + types_hash_max_size 2048; + server_tokens off; + + # server_names_hash_bucket_size 64; + # server_name_in_redirect off; + + include /etc/nginx/mime.types; + default_type application/octet-stream; + + ## + # SSL Settings + ## + + ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE + ssl_prefer_server_ciphers on; + + ## + # Logging Settings + ## + log_format main '$remote_addr|$status|$body_bytes_sent|$http_referer|$http_user_agent|$http_x_forwarded_for|$remote_user [$time_local]|$request'; + access_log /var/log/nginx/access.log main; + error_log /var/log/nginx/error.log; + + ## + # Gzip Settings + ## + + gzip on; + + # gzip_vary on; + # gzip_proxied any; + # gzip_comp_level 6; + # gzip_buffers 16 8k; + # gzip_http_version 1.1; + # gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript; + proxy_cache_path /data/nginx/cache keys_zone=STATIC:10m max_size=1g inactive=1d; + ## + # Virtual Host Configs + ## + + include /etc/nginx/conf.d/*.conf; + include /etc/nginx/sites-enabled/*; +} + + +#mail { +# # See sample authentication script at: +# # http://wiki.nginx.org/ImapAuthenticateWithApachePhpScript +# +# # auth_http localhost/auth.php; +# # pop3_capabilities "TOP" "USER"; +# # imap_capabilities "IMAP4rev1" "UIDPLUS"; +# +# server { +# listen localhost:110; +# protocol pop3; +# proxy on; +# } +# +# server { +# listen localhost:143; +# protocol imap; +# proxy on; +# } +#} diff --git a/roles/deploy-web/tasks/deploy.yml b/roles/deploy-web/tasks/deploy.yml index 0adb461..fff41cb 100644 --- a/roles/deploy-web/tasks/deploy.yml +++ b/roles/deploy-web/tasks/deploy.yml @@ -83,6 +83,15 @@ ansible_become_method: sudo ansible_become_password: "{{ sudo_password }}" +- name: "copy nginx.conf" + copy: + src: "nginx.conf" + dest: "/etc/nginx/" + vars: + ansible_become: yes + ansible_become_method: sudo + ansible_become_password: "{{ sudo_password }}" + - name: "all copy configure nginx" copy: src: "{{ item.conf_name }}"