Wordpress

Frameworks

  • bedrock - WordPress boilerplate with modern development tools, easier configuration, and an improved folder structure

Tools

Snippets

Example docker-compose.yml file

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
version: '3'

services:
db:
image: mysql:5.7
volumes:
- "$PWD/mysql-data:/var/lib/mysql"
environment:
MYSQL_ROOT_PASSWORD: w0rdPr3s
MYSQL_DATABASE: wordpress
MYSQL_USER: wordpress
MYSQL_PASSWORD: w0rdPr3s

wordpress:
image: wordpress:4.9-php7.1
ports:
- "80:80"
volumes:
- "$PWD/wp-content:/var/www/html/wp-content"
links:
- db:db
environment:
WORDPRESS_DB_HOST: db:3306
WORDPRESS_DB_PASSWORD: w0rdPr3s

How to resolve mixed content warnings

Nginx reverse proxy issue fix

Security

  • wpscan.org - WPScan is a black box WordPress vulnerability scanner.
  • wordfence - Protect your websites with the best WordPress security available.

Comments

⬆︎TOP