Wordpress download / Vhost config
This commit is contained in:
39
roles/configure-nginx/files/vhost.conf.j2
Normal file
39
roles/configure-nginx/files/vhost.conf.j2
Normal file
@ -0,0 +1,39 @@
|
||||
map $sent_http_content_type $expires {
|
||||
default off;
|
||||
text/html epoch;
|
||||
text/css max;
|
||||
application/javascript max;
|
||||
~image/ max;
|
||||
}
|
||||
|
||||
server {
|
||||
root /var/www/{{ vhost_name }};
|
||||
index index.php index.html index.htm;
|
||||
server_name {{ domain }};
|
||||
listen 80;
|
||||
|
||||
expires $expires;
|
||||
client_max_body_size 50M;
|
||||
|
||||
autoindex off;
|
||||
|
||||
location / {
|
||||
try_files $uri $uri/ @handler;
|
||||
}
|
||||
|
||||
location /admin {
|
||||
try_files $uri $uri/ /admin/index.php?$args;
|
||||
}
|
||||
|
||||
location @handler {
|
||||
if (!-e $request_filename) { rewrite / /index.php last; }
|
||||
rewrite ^(.*.php)/ $1 last;
|
||||
}
|
||||
|
||||
location ~ \.php$ {
|
||||
include snippets/fastcgi-php.conf;
|
||||
fastcgi_pass unix:/var/run/php/php{{ php_version }}-fpm.sock;
|
||||
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
||||
include fastcgi_params;
|
||||
}
|
||||
}
|
@ -1,7 +1,13 @@
|
||||
---
|
||||
- name: Create wwwroot
|
||||
file:
|
||||
path: /var/www/{{ vhost_name }}
|
||||
state: directory
|
||||
mode: '0755'
|
||||
|
||||
- name: Prepare config file
|
||||
copy:
|
||||
src: files/web-{{ vhost_name }}.conf
|
||||
template:
|
||||
src: files/vhost.conf.j2
|
||||
dest: /etc/nginx/sites-available/web-{{ vhost_name }}.conf
|
||||
|
||||
- name: Create a symbolic link
|
||||
|
Reference in New Issue
Block a user