WordPress @ Synology ngnix 的調整

WordPress @ Synology 若使用 ngnix 當後台會無法使用 固定網址.
這時需要調整 ngnix 的設定.

以下是 ngnix @ Synology 的設定調整方式

Step 1 :
在 /etc/nginx/app.d/server.webstation-vhost.conf 找到 虛擬主機 的 id (一串亂碼)

Step 2 :
進入 /etc/nginx/conf.d/主機 id 內 新增  user.conf

Step 3 :
在 user.conf 內新增

location / {
            try_files $uri $uri/ /index.php?$args; 
}