vhost
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
5c7f2d6f68
commit
253b2fb05a
|
@ -11,9 +11,7 @@ steps:
|
||||||
path: /cache
|
path: /cache
|
||||||
commands:
|
commands:
|
||||||
- bundle config set --local path /cache/.bundle
|
- bundle config set --local path /cache/.bundle
|
||||||
- bundle env
|
|
||||||
- bundle install
|
- bundle install
|
||||||
- ls -la /cache/.bundle
|
|
||||||
- bundle exec jekyll build
|
- bundle exec jekyll build
|
||||||
|
|
||||||
- name: deploy
|
- name: deploy
|
||||||
|
|
|
@ -29,8 +29,17 @@ Como el contenido hay que servirlo desde alguna parte, tengo la siguiente config
|
||||||
|
|
||||||
```nginx
|
```nginx
|
||||||
server {
|
server {
|
||||||
...
|
server_name sergio.am;
|
||||||
...
|
root /var/www/_site;
|
||||||
|
index index.html;
|
||||||
|
|
||||||
|
location / {
|
||||||
|
try_files $uri $uri/ @gitea;
|
||||||
|
}
|
||||||
|
|
||||||
|
location @gitea {
|
||||||
|
proxy_pass http://gitea:3000;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue