mirror of
https://github.com/HanXHX/ansible-nginx.git
synced 2026-02-24 09:03:29 +07:00
Vhost static OK (dirty)
This commit is contained in:
26
templates/etc/nginx/sites-available/COMMON.j2
Normal file
26
templates/etc/nginx/sites-available/COMMON.j2
Normal file
@@ -0,0 +1,26 @@
|
||||
{% if item.ssl is defined and item.ssl.use is defined and item.ssl.use %}
|
||||
listen {{ item.listen | default('443') }};
|
||||
# server_name {{ item.name | join(' ')}}; # TODO: gérer plusieurs vhosts
|
||||
server_name {{ item.name }};
|
||||
ssl on;
|
||||
ssl_certificate {{ nginx_ssl_dir }}/{{ item.name }}/{{ item.name }}.crt;
|
||||
ssl_certificate_key {{ nginx_ssl_dir }}/{{ item.name }}/{{ item.name }}.key;
|
||||
include /etc/nginx/helpers/ssl-{{ item.ssl.template | default('strong') }};
|
||||
{% else %}
|
||||
listen {{ item.listen | default('80') }};
|
||||
# server_name {{ item.name | join(' ')}}; # TODO: gérer plusieurs vhosts
|
||||
server_name {{ item.name }};
|
||||
{% endif %}
|
||||
|
||||
root {{ nginx_root }}/{{ item.name }}/public;
|
||||
|
||||
{% if item.use_access_log is defined and item.use_access_log %}
|
||||
access_log {{ nginx_log_dir }}/{{ item.name }}_access.log combined;
|
||||
{% else %}
|
||||
access_log off;
|
||||
{% endif %}
|
||||
{% if item.use_error_log is defined and item.use_error_log %}
|
||||
error_log {{ nginx_log_dir }}/{{ item.name }}_error.log {{ nginx_error_log_level }};
|
||||
{% else %}
|
||||
error_log off;
|
||||
{% endif %}
|
||||
6
templates/etc/nginx/sites-available/REDIRECT.j2
Normal file
6
templates/etc/nginx/sites-available/REDIRECT.j2
Normal file
@@ -0,0 +1,6 @@
|
||||
{% if item.redirect_server_name is defined %}
|
||||
server {
|
||||
server_name {{ item.redirect_server_name | join(' ') }};
|
||||
return 301 {% if item.ssl.use %}https{% else %}http{% endif %}://{{ item.server_name[0] }}$request_uri;
|
||||
}
|
||||
{% endif %}
|
||||
19
templates/etc/nginx/sites-available/simple-php.j2
Normal file
19
templates/etc/nginx/sites-available/simple-php.j2
Normal file
@@ -0,0 +1,19 @@
|
||||
#
|
||||
# {{ ansible_managed }}
|
||||
#
|
||||
|
||||
server {
|
||||
{% include 'COMMON.j2' %}
|
||||
|
||||
index index.htm index.html index.php;
|
||||
location / {
|
||||
try_files $uri $uri/ /index.php;
|
||||
}
|
||||
include /etc/nginx/helpers/php;
|
||||
include /etc/nginx/helpers/no-ht;
|
||||
include /etc/nginx/helpers/static-expires;
|
||||
}
|
||||
|
||||
{% include 'REDIRECT.j2' %}
|
||||
|
||||
# vim:filetype=nginx
|
||||
19
templates/etc/nginx/sites-available/static.j2
Normal file
19
templates/etc/nginx/sites-available/static.j2
Normal file
@@ -0,0 +1,19 @@
|
||||
#
|
||||
# {{ ansible_managed }}
|
||||
#
|
||||
|
||||
server {
|
||||
{% include 'COMMON.j2' %}
|
||||
|
||||
index index.htm index.html;
|
||||
|
||||
location / {
|
||||
try_files $uri $uri/ =404;
|
||||
}
|
||||
include /etc/nginx/helpers/static-expires;
|
||||
include /etc/nginx/helpers/no-ht;
|
||||
}
|
||||
|
||||
{% include 'REDIRECT.j2' %}
|
||||
|
||||
# vim:filetype=nginx
|
||||
20
templates/etc/nginx/sites-available/wordpress.j2
Normal file
20
templates/etc/nginx/sites-available/wordpress.j2
Normal file
@@ -0,0 +1,20 @@
|
||||
#
|
||||
# {{ ansible_managed }}
|
||||
#
|
||||
|
||||
server {
|
||||
{% include 'COMMON.j2' %}
|
||||
|
||||
index index.htm index.html index.php;
|
||||
|
||||
location / {
|
||||
try_files $uri $uri/ /index.php?q=$uri&$args;
|
||||
}
|
||||
include /etc/nginx/helpers/static-expires;
|
||||
include /etc/nginx/helpers/no-ht;
|
||||
include /etc/nginx/helpers/php;
|
||||
}
|
||||
|
||||
{% include 'REDIRECT.j2' %}
|
||||
|
||||
# vim:filetype=nginx
|
||||
Reference in New Issue
Block a user