Skip to content

Commit

Permalink
sync: hooks path
Browse files Browse the repository at this point in the history
  • Loading branch information
marcospereira committed Feb 27, 2024
1 parent 7ad338c commit d8cf44b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ group:
- src/main/jte/.jteroot
- src/main/jte/assets
# Some scripts
- scripts/pre-commit
- hooks/pre-commit
# Others
- LICENSE
repos: |
Expand Down Expand Up @@ -153,7 +153,7 @@ group:
- src/main/jte/internalServerError.kte
- src/main/jte/notFound.kte
# Some scripts
- scripts/pre-commit
- hooks/pre-commit
# Others
- LICENSE
repos: |
Expand Down
4 changes: 2 additions & 2 deletions scripts/project-starter.conf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# Essa é a configuração nginx para a aplicação do Project Starter
# No Rocky 9, o arquivo deve ser copiado para: /etc/nginx/conf.d/project-starter.conf.
# O valor da porta (8082) deve coincidir com o valor setado no unit file do
# systemd para a variavel de ambiente `HYGINIA_PORT`.
# systemd para a variavel de ambiente `PROJECT_STARTER_PORT`.
upstream project-starter {
server 127.0.0.1:8082;
}
Expand All @@ -15,7 +15,7 @@ server {
listen 80;
listen [::]:80;
# O path para a aplicação. Deve ser o mesmo que o valor setado no unit file do
# systemd para a variavel de ambiente `HYGINIA_PATH`.
# systemd para a variavel de ambiente `PROJECT_STARTER_PATH`.
location /project-starter {
proxy_pass http://project-starter;
}
Expand Down

0 comments on commit d8cf44b

Please sign in to comment.