How to Install WordPress on Your Synology NAS

How to Install WordPress on Your Synology NAS

WordPress is a free and open-source content management system (CMS). It’s the simplest and most popular solution to create your own website or blog. WordPress makes building a website accessible to anyone, even people who aren’t developers. With WordPress you can create any type of website such as blogs, eCommerce stores, portfolio websites, forums, resumes, business websites etc. In this step by step guide I will show you how to install WordPressĀ on yourĀ Synology NASĀ using Docker & Portainer.

šŸ’”Note:Ā This guide works perfectly with the latest version of WordPress 6.8.2

šŸ’”Note: Check out my guide on how to Install WordPress on Your UGREEN NAS.

  • STEP 1

Please Support My work by Making a Donation.

  • STEP 2

Install Text Editor via Synology ā€œPackage Centerā€. (Mandatory STEP.) If you already have Text Editor installed on your Synology NAS, skip this STEP.

Synology Install Text Editor 2023

  • STEP 3

InstallĀ Portainer using my step by step guide. If you already have Portainer installed on your Synology NAS, skip this STEP. Attention: Make sure you have installed the latest Portainer version.

  • STEP 4

Make sure you have a synology.me Wildcard Certificate. Follow my guide to get a Wildcard Certificate. If you already have a synology.me Wildcard certificate, skip this STEP.

  • STEP 5

Go toĀ Control PanelĀ /Ā Login PortalĀ /Ā AdvancedĀ Tab / clickĀ Reverse Proxy. Follow the instructions in the image below.

WordPress Synology NAS Set up 1 new 2023

  • STEP 6

Now click the ā€œCreateā€ button. Follow the instructions in the image below.

WordPress Synology NAS Set up 2 new 2023

  • STEP 7

After you click the Create button, the window below will open. Follow the instructions in the image below.

On the General area, set the Reverse Proxy Name description: type in WordPress. After that, add the following instructions:

Source:
Protocol:Ā HTTPS
Hostname: wordpress.yourname.synology.me
Port:Ā 443

Check Enable HSTS

Destination:
Protocol:Ā HTTP
Hostname:Ā localhost
Port:Ā 8195

WordPress Synology NAS Set up 3 new 2024

  • STEP 8

On the Reverse Proxy Rules click the Custom HeaderĀ tab. ClickĀ CreateĀ and then, from the drop-down menu, clickĀ WebSocket. After you click on WebSocket, two Header Names and two Values will be automatically added. ClickĀ Save. Follow the instructions in the image below.

Synology Proxy WebSocket

  • STEP 9

Go to Control Panel / Network / Connectivity tab/ Check Enable HTTP/2 then click Apply. Follow the instructions in the image below.

WordPress Synology NAS Set up 4 new 2023

  • STEP 10

Go to Control Panel / Security / Advanced tab/ Check Enable HTTP CompressionĀ then click Apply. Follow the instructions in the image below.

WordPress Synology NAS Set up 5 new 2023

  • STEP 11

Go toĀ File Station and open the docker folder. Inside the docker folder, create one new folder and name it wordpress. Follow the instructions in the image below.
Note: Be careful to enter only lowercase, not uppercase letters.

WordPress Synology NAS Set up 6 new 2023

  • STEP 12

Now create two new folders inside the wordpress folder that you created at STEP 11 and name them db and redis. Follow the instructions in the image below.
Note: Be careful to enter only lowercase, not uppercase letters.

WordPress Synology NAS Set up 7 new 2023

  • STEP 13

Download (click on the blue link below) then unzip and upload the uploads.ini file below in the wordpress folder that you have previously created at STEP 11. Follow the instructions in the image below. šŸ”’Note: Support my work to unlock the password. You can use this password to download any file on mariushosting forever!

šŸ‘‰šŸ»Download uploads.ini

WordPress Synology NAS Set up php uploads file

  • STEP 14

Log into Portainer using your username and password. On the left sidebar in Portainer, click onĀ HomeĀ thenĀ Live connect. Follow the instructions in the image below.

Portainer Add Stack NAS 1

On the left sidebar in Portainer, click on StacksĀ thenĀ + Add stack. Follow the instructions in the image below.

Portainer Add Stack NAS 2

  • STEP 15

In the Name field type in wordpress. Follow the instructions in the image below.

Note: Copy Paste the code below in the Portainer Stacks Web editor.

services:
  wordpress:
    image: wordpress:php8.4
    container_name: WordPress
    hostname: wordpress
    healthcheck:
     test: curl -f http://localhost:80/ || exit 1
    ports:
      - 8195:80
    depends_on:
      db:
        condition: service_started
      redis:
        condition: service_healthy
      phpmyadmin:
        condition: service_healthy
    volumes:
      - /volume1/docker/wordpress:/var/www/html:rw
      - /volume1/docker/wordpress/uploads.ini:/usr/local/etc/php/conf.d/uploads.ini:rw
    environment:
      WORDPRESS_DB_HOST: db
      WORDPRESS_DB_USER: marius
      WORDPRESS_DB_PASSWORD: mariuspassword
      WORDPRESS_DB_NAME: mariushosting_db
    restart: on-failure:5

  db:
    image: mariadb:11.4-noble #LTS Long Time Support Until May 29, 2029.
    container_name: WordPress-DB
    security_opt:
      - no-new-privileges:true
    hostname: wordpress-db
    environment:
      MYSQL_DATABASE: mariushosting_db
      MYSQL_USER: marius
      MYSQL_PASSWORD: mariuspassword
      MYSQL_ROOT_PASSWORD: rootpass
      TZ: Europe/Bucharest
    volumes:
      - /volume1/docker/wordpress/db:/var/lib/mysql:rw
    restart: on-failure:5

  redis:
    image: redis
    hostname: wordpress-redis
    container_name: WordPress-REDIS
    user: 1026:100
    healthcheck:
     test: ["CMD-SHELL", "redis-cli ping || exit 1"]
    volumes:
      - /volume1/docker/wordpress/redis:/data:rw
    environment:
      TZ: Europe/Bucharest
    restart: on-failure:5
      
  phpmyadmin:
    image: phpmyadmin
    hostname: wordpress-phpmyadmin
    healthcheck:
     test: curl -f http://localhost:80/ || exit 1
    container_name: WordPress-phpMyAdmin
    ports:
      - 2500:80
    environment:
     PMA_HOST: wordpress-db
     PMA_PORT: 3306
    restart: on-failure:5

Note: Before you paste the code above in the Web editor area below, change the values for WORDPRESS_DB_USER and MYSQL_USER. Type in your own username for both values; they have to be identical. marius is an example for a user.
Note: Before you paste the code above in the Web editor area below, change the value for WORDPRESS_DB_PASSWORDĀ and MYSQL_PASSWORD. Type in your own password for both values; they have to be identical. mariuspassword is an example for a password. āš ļøWarning: Do NOT use a password with special characters that include the dollar symbol $.
Note: Before you paste the code above in the Web editor area below, change the value for WORDPRESS_DB_NAME and MYSQL_DATABASE. Type in your own database name for both values; they have to be identical. mariushosting_db is an example for a database name.
Note: Before you paste the code above in the Web editor area below, change the value for TZ.Ā (Select your current Time Zone from this list.)
Note: Before you paste the code above in the Web editor area below, change the value numbers for user with your own UID and GID values. (Follow my step by step guide on how to do this.) 1026 is my personal UID value and 100 is my personal GID value. You have to type in your own values.

WordPress Synology NAS Set up 8 new 2030

  • STEP 16

Scroll down on the page until you see a button namedĀ Deploy the stack. Click on it. Follow the instructions in the image below. The installation process can take up to a few minutes. It will depend on your Internet speed connection.

WordPress Synology NAS Set up 9 new 2031

  • STEP 17

If everything goes right, you will see the following message at the top right of your screen: ā€œSuccess Stack successfully deployedā€œ.

Portainer Success Stack NAS

  • STEP 18

🟢Please Support My work by Making a Donation. Almost 99,9% of the people that install something using my guidesĀ forget to support my work, or justĀ ignoreĀ STEP 1. I’ve been very honest about this aspect of my work since the beginning: I don’t run any ADS, I don’t require subscriptions, paid or otherwise, I don’t collect IPs, emails, and I don’t have any referral links from Amazon or other merchants. I also don’t have any POP-UPs or COOKIES. I have repeatedly been told over the years how much I have contributed to the community. It’s something I love doing and have been honest about my passion since the beginning. But I also Need The Community to Support me Back to be able to continue doing this work.

  • STEP 19

Please waitĀ approximately 5 minutes for the installation to be completed or you will get a blank page with the following error message: Error establishing a database connection. Now open your browser and type in your HTTPS/SSL certificate like this https://wordpress.yourname.synology.me In my case it’s https://wordpress.mariushosting.synology.me If everything goes right, you will see the WordPress Installation Page. Choose your language then click Continue. Follow the instructions in the image below.

WordPress Synology NAS Set up 11 new 2023

  • STEP 20

Type in your Site title, your own Username, your own Password and your own Email then click Install WordPress. Follow the instructions in the image below. āš ļøWarning: Username and Password in this area should be created now. āš ļøDo not confuse this Username and Password with the ones created at STEP 15.

WordPress Synology NAS Set up 12 new 2023

  • STEP 21

Wait approximately 1 minute for the installation to be completed. Click Log in. Follow the instructions in the image below.

WordPress Synology NAS Set up 13 new 2023

  • STEP 22

Type in your own Username and Password that you have previously created at STEP 20 then click Log in. Follow the instructions in the image below.

WordPress Synology NAS Set up 14 new 2023

  • STEP 23

Your WordPress instance should look like this.

WordPress Synology NAS Set up 15 new 2023

  • STEP 24

Go to File Station then open the wordpress folder. Follow the instructions in the image below.

WordPress Synology NAS Set up 19 new 2023

  • STEP 25

Make sure you have installed Synology Text Editor as per the instructions at STEP 2. Double click on the wp-config.php file to open it. Follow the instructions in the image below.

WordPress Synology NAS Set up 20 new 2023

  • STEP 26

Under the WORDPRESS_DEBUG line, copy and paste these two supplementary lines below. Click X to save the file. Follow the instructions in the image below.

define('WP_REDIS_HOST', 'wordpress-redis');
define('WP_REDIS_PORT', '6379');

WordPress Synology NAS Set up 21 new 2023

  • STEP 27

On the WordPress left sidebar, click on Plugins, then Add Plugin. Search for Redis Object Cache.Ā When you find the plugin named Redis Object Cache, click Install Now then Activate it. Follow the instructions in the image below.

WordPress Synology NAS Set up 16 new 2023

Note: WordPress uses the MySQL/MariaDB database to cache internal application objects like breadcrumbs, menu items etc. which are very heavy to generate. A database handles queries for page requests, and causes increased load-times when your website is loaded intensively. Redis provides a caching mechanism that acts as an alternative to your MySQL/MariaDB database. If someone is visiting your WordPress website, the MySQL/MariaDB queries required to generate the entire page are served via Redis which caches the results. This results in blazing fast load times, comparable to static pages without Redis. When a user requests a WordPress page for the first time, a MySQL/MariaDB database query is performed on your Synology NAS server. Redis will cache this query, so when another user requests the same identical WordPress page, the results are provided from Redis, without the need to query the MySQL/MariaDB database again. So, in a few words, if the query is not cached in Redis, the results are provided by your MySQL/MariaDB database, which are then added to the Redis cache. RedisĀ stores data in memoryĀ rather than on an HDD or SSD cache; its response time is faster than others when performing read and write operations.

  • STEP 28

After the Redis Object Cache plugin is installed, you will find it under the Settings menu. Click on Redis. Click Enable Object Cache. Follow the instructions in the image below.

WordPress Synology NAS Set up 17 new 2023

  • STEP 29

After you click Enable Object Cache, the Status will say Connected. Follow the instructions in the image below. āš ļøWarning: If you accidentally click Flush Cache, your Redis host will be disconnected. To solve this issue, just restart the WordPress-REDIS container via Portainer.

WordPress Synology NAS Set up 22 new 2023

  • STEP 30

phpMyAdmin is the graphical interface for the MariaDB database. It will help you connect to your database.Ā Open your browser and type in http://Synology-ip-address:2500Ā Connect to your MariaDB usingĀ root as Username and rootpass as Password. ClickĀ Log in. Follow the instructions in the image below.

WordPress Synology NAS Set up 23 new 2023

  • STEP 31

You can now download and back up your WordPress database without needing to install any backup plugin on your WordPress website. Warning: Do not expose the phpMyadmin instance to the Internet via Reverse Proxy. You can do it by using a strong password, but it’s not recommended to expose it. Keep it local.
Note: Find out how to backup your WordPress database using phpMyAdmin.
Note: Fix the error message: The phpMyAdmin configuration storage is not completely configured.

WordPress Synology NAS Set up 24 new 2023

  • STEP 32

Find out how to add Email SMTP to your WordPress website so you can receive notifications via email.

  • STEP 33

Speed Up WordPress With Docker and Cron. Step by step guide on how to set up CRON in WordPress on your Synology NAS.

šŸ†˜TROUBLESHOOTING

āš ļøNote: If you encounter permission issues and not all containers are starting, ensure that your current NAS user has Read/Write permissions for the Docker folder in Control Panel > User & Group > Select the current NAS user > Edit tab > Permissions tab. You can also try to add Everyone read/write permission to the db and redis folders at STEP 12 like this other article from STEP 5 to STEP 9.

Enjoy WordPress!

Note: Can I run Docker on my Synology NAS?Ā See the supported models.
Note: How to Back Up Docker Containers on your Synology NAS.
Note: Find outĀ how to update the WordPress container with the latest image.
Note: How to Free Disk Space on Your NAS if You Run Docker.
Note: How to Schedule Start & Stop For Docker Containers.
Note: How to Activate Email Notifications.
Note: How to Add Access Control Profile on Your NAS.
Note: How to Change Docker Containers Restart Policy.
Note: How to Use Docker Containers With VPN.
Note: Convert Docker Run Into Docker Compose.
Note: How to Clean Docker.
Note: How to Clean Docker Automatically.
Note: Best Practices When Using Docker and DDNS.
Note: Some Docker Containers Need WebSocket.
Note: Find out the Best NAS Models For Docker.
Note: Activate Gmail SMTP For Docker Containers.

This post was updated on Saturday / August 23rd, 2025 at 11:54 PM