$ systemctl edit php-fpm.service
[Service]
ProtectHome=false
$ systemctl edit php-fpm.service
[Service]
ProtectHome=false
update mysql.user set plugin='mysql_native_password' where user='root'; | |
update mysql.user set password=password("pwd") where user='root'; | |
FLUSH PRIVILEGES; |
ssl_certificate /etc/letsencrypt/live/DOMAIN/fullchain.pem; | |
ssl_certificate_key /etc/letsencrypt/live/DOMAIN/privkey.pem; | |
if ($scheme = http) { | |
return 301 https://$server_name$request_uri; | |
} | |
if ($host != DOMAIN) { | |
return 301 $scheme://DOMAIN$request_uri; | |
} |
location / { | |
try_files $uri $uri/ /index.php?$args; | |
} | |
rewrite /wp-admin$ $scheme://$host$uri/ permanent; |
git rm -r --cached . | |
git add . | |
git commit -m "ignore take effect" |
<?php | |
/** | |
* Get the average pixel colour from the given file using Image Magick | |
* | |
* @param string $filename | |
* @param bool $as_hex Set to true, the function will return the 6 character HEX value of the colour. | |
* If false, an array will be returned with r, g, b components. | |
*/ | |
function get_average_colour($filename, $as_hex_string = true) { |