sakura/docs/dev.md

18 lines
303 B
Markdown
Raw Normal View History

# Dev configurations
2021-07-09 18:28:29 +08:00
.env.development
```env
2021-07-09 18:28:29 +08:00
SSH_KEY_PATH='~/.ssh/id_rsa'
SSH_REMOTE_HOST='root@8.8.8.8'
SSH_REMOTE_WORK_DIR='/var/www/html/wp-contents/themes/sakura-next'
```
add this rewrite rule to Nginx:
```nginx
location /src/assets {
rewrite ^/(.*)$ http://localhost:9000/$1 redirect;
}
```