Fix the nginx virtualhost and the path of the wp command.
This commit is contained in:
parent
50f2d66993
commit
9c756aa272
|
@ -15,7 +15,7 @@
|
||||||
cron:
|
cron:
|
||||||
name: "Update the Wordpress core"
|
name: "Update the Wordpress core"
|
||||||
special_time: 'daily'
|
special_time: 'daily'
|
||||||
job: "cd {{ wordpress_doc_root }} && wp core update {% if wordpress_auto_upgrade_minor_only %} --minor{% endif %} > /var/log/wordpress_maintenance/wp_core_update.log 2>&1"
|
job: "cd {{ wordpress_doc_root }} && /usr/local/bin/wp core update {% if wordpress_auto_upgrade_minor_only %} --minor{% endif %} > /var/log/wordpress_maintenance/wp_core_update.log 2>&1"
|
||||||
state: present
|
state: present
|
||||||
user: '{{ wordpress_system_user }}'
|
user: '{{ wordpress_system_user }}'
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@
|
||||||
cron:
|
cron:
|
||||||
name: "Update the Wordpress plugins"
|
name: "Update the Wordpress plugins"
|
||||||
special_time: 'daily'
|
special_time: 'daily'
|
||||||
job: "cd {{ wordpress_doc_root }} && wp plugin update --all > /var/log/wordpress_maintenance/wp_plugins_update.log 2>&1"
|
job: "cd {{ wordpress_doc_root }} && /usr/local/bin/wp plugin update --all > /var/log/wordpress_maintenance/wp_plugins_update.log 2>&1"
|
||||||
state: present
|
state: present
|
||||||
user: '{{ wordpress_system_user }}'
|
user: '{{ wordpress_system_user }}'
|
||||||
|
|
||||||
|
|
|
@ -120,12 +120,9 @@ server {
|
||||||
}
|
}
|
||||||
|
|
||||||
location ~ \.php$ {
|
location ~ \.php$ {
|
||||||
#NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini
|
include fastcgi.conf;
|
||||||
try_files $uri =404;
|
|
||||||
fastcgi_intercept_errors on;
|
fastcgi_intercept_errors on;
|
||||||
fastcgi_pass php;
|
fastcgi_pass php;
|
||||||
fastcgi_param REMOTE_ADDR $remote_addr;
|
|
||||||
include fastcgi_params;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
location ~* \.(js|css|png|jpg|jpeg|gif|ico)$ {
|
location ~* \.(js|css|png|jpg|jpeg|gif|ico)$ {
|
||||||
|
|
Loading…
Reference in New Issue