How to Use Google Trends to Your Advantage

Susiloharjo

Hey there, trendsetters and curious minds! Have you ever wondered what the world is buzzing about online? Well, Google Trends is your backstage pass to the hottest topics, searches, and questions that are taking the internet by storm. So, What’s the Big Deal About Google Trends? Think of it like eavesdropping on the world’s biggest … Read more

Howto deploy wordpress using docker compose

docker

This is how you can use docker compose to run WordPress on it First make docker-compose.yml with this content version: ‘2’ services: db: image: mysql:5.7 volumes: – db_data:/var/lib/mysql restart: always environment: MYSQL_ROOT_PASSWORD: ${MYSQL_DATABASE_PASSWORD} MYSQL_DATABASE: wordpress MYSQL_USER: wordpress_db MYSQL_PASSWORD: ${WORDPRESS_PASSWORD} wordpress: image: wordpress:latest ports: – 5500:80 restart: always environment: WORDPRESS_DB_HOST: db:3306 WORDPRESS_DB_USER: wordpress_db WORDPRESS_DB_PASSWORD: ${WORDPRESS_PASSWORD} volumes: … Read more

Howto setting wordpress working under proxy nginx

Susiloharjo

This is my note howto setting WordPress

First add this at wp-config.php

define('FORCE_SSL_ADMIN', true);

if (strpos($_SERVER['HTTP_X_FORWARDED_PROTO'], 'https') !== false){
    $_SERVER['HTTPS'] = 'on';
    $_SERVER['SERVER_PORT'] = 443;
}
if (isset($_SERVER['HTTP_X_FORWARDED_HOST'])) {
    $_SERVER['HTTP_HOST'] = $_SERVER['HTTP_X_FORWARDED_HOST'];
}

define('WP_HOME', 'https://domain name');
define('WP_SITEURL', 'https://domain name');



Read more