Hello real world!!

This is the 1st post.

This blog is about productions process, something I want to share with you things I’ve noticed through developing a content such as video, animation and web development.

WordPress installation

I’ve installed WordPress in to my digitalocean.com server.

ENVIRONMENT

  • Ubuntu 18.04.4
  • PHP7.2
  • MySQL 14.14
  • NGINX 1.14.0

I had a hard time configure nginx to enable php. The reason was simply the PHP-FPM location. So when you configure, please make sure the path

location ~ \.php$ {
                fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;
                fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
                include fastcgi_params;
                include fastcgi.conf;
                }

One Reply to “Hello real world!!”

Leave a Reply

Your email address will not be published. Required fields are marked *