Compare commits
1 Commits
d9290a5107
...
169050f910
Author | SHA1 | Date | |
---|---|---|---|
169050f910 |
16
README.md
16
README.md
|
@ -1,17 +1,3 @@
|
||||||
# HugoPoi's blog deploy documentation
|
# HugoPoi's blog deploy documentation
|
||||||
|
|
||||||
1. Get the assets
|
* Some deploy code
|
||||||
`rsync -a -C --progress home.hugopoi.net:/var/www/my_webapp/www/.content.EZtzwPjb/binary www/.content.EZtzwPjb`
|
|
||||||
I should put this in git lfs
|
|
||||||
|
|
||||||
## Local mode
|
|
||||||
|
|
||||||
1. `hugo`
|
|
||||||
1. `docker compose up`
|
|
||||||
|
|
||||||
## Dev mode with hugo live reload
|
|
||||||
|
|
||||||
1. `export UID GID=$(id -g)`
|
|
||||||
1. `docker compose -f docker-compose.yml -f docker-compose.dev.yml up`
|
|
||||||
1. Go to the [home](http://localhost:8080/)
|
|
||||||
|
|
||||||
|
|
|
@ -1,13 +0,0 @@
|
||||||
version: "3"
|
|
||||||
|
|
||||||
services:
|
|
||||||
web:
|
|
||||||
volumes:
|
|
||||||
- ./docker-nginx-conf/enable-hugo-reverse-proxy.conf:/etc/nginx/enable-hugo-reverse-proxy.conf
|
|
||||||
hugo:
|
|
||||||
image: frankywahl/hugo
|
|
||||||
working_dir: "/app/v2"
|
|
||||||
user: "${UID}:${GID}"
|
|
||||||
volumes:
|
|
||||||
- ./:/app
|
|
||||||
command: server --buildDrafts --bind 0.0.0.0
|
|
|
@ -7,8 +7,15 @@ services:
|
||||||
- "8080:80"
|
- "8080:80"
|
||||||
volumes:
|
volumes:
|
||||||
- ./www:/var/www/html
|
- ./www:/var/www/html
|
||||||
- ./docker-nginx-conf/default.conf:/etc/nginx/conf.d/default.conf
|
- ./nginx.conf:/etc/nginx/conf.d/default.conf
|
||||||
php-fpm:
|
php-fpm:
|
||||||
image: php:8-fpm
|
image: php:8-fpm
|
||||||
volumes:
|
volumes:
|
||||||
- ./www:/var/www/html
|
- ./www:/var/www/html
|
||||||
|
hugo:
|
||||||
|
image: mbentley/hugo
|
||||||
|
working_dir: "/data"
|
||||||
|
user: "${UID}:${GID}"
|
||||||
|
volumes:
|
||||||
|
- ./v2:/data
|
||||||
|
command: server -D --bind 0.0.0.0
|
||||||
|
|
|
@ -1,3 +0,0 @@
|
||||||
location /v2 {
|
|
||||||
proxy_pass http://hugo:1313/v2;
|
|
||||||
}
|
|
|
@ -6,7 +6,9 @@ server {
|
||||||
root /var/www/html;
|
root /var/www/html;
|
||||||
try_files $uri $uri/ /index.php;
|
try_files $uri $uri/ /index.php;
|
||||||
|
|
||||||
include /etc/nginx/enable-hugo-reverse-proxy.conf* ;
|
location /v2 {
|
||||||
|
proxy_pass http://hugo:1313/v2;
|
||||||
|
}
|
||||||
|
|
||||||
location ~ \.php$ {
|
location ~ \.php$ {
|
||||||
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
Loading…
Reference in New Issue
Block a user