mirror of
https://github.com/dokku/buildpack-nginx.git
synced 2026-03-13 09:05:58 +00:00
Compare commits
16 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 86dfeec2ca | |||
| ca3942c86b | |||
| 6370be31a4 | |||
| bc25e56ef2 | |||
| f55c587fe7 | |||
| bf9a02f4e4 | |||
| e6606b78d0 | |||
| b13b59c326 | |||
| c8c38bb28f | |||
| 5763938ba0 | |||
| 488cf5fed2 | |||
| e710a8facb | |||
| c352c1447c | |||
| 6639e59190 | |||
| 6c3e8af17f | |||
| 14214785d7 |
2
.github/workflows/deploy.yml
vendored
2
.github/workflows/deploy.yml
vendored
@ -9,7 +9,7 @@ on:
|
|||||||
- main
|
- main
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
review_app:
|
deploy:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Cloning repo
|
- name: Cloning repo
|
||||||
|
|||||||
3
.github/workflows/review-app-cleanup.yml
vendored
3
.github/workflows/review-app-cleanup.yml
vendored
@ -12,6 +12,9 @@ jobs:
|
|||||||
destroy_review_app:
|
destroy_review_app:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
- name: Cloning repo
|
||||||
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Destroy the review app
|
- name: Destroy the review app
|
||||||
uses: dokku/github-action@master
|
uses: dokku/github-action@master
|
||||||
with:
|
with:
|
||||||
|
|||||||
3
bin/ci-post-review-app-destroy
Executable file
3
bin/ci-post-review-app-destroy
Executable file
@ -0,0 +1,3 @@
|
|||||||
|
#!/bin/sh -l
|
||||||
|
|
||||||
|
echo "Running ci-post-review-app-destroy"
|
||||||
@ -4,7 +4,7 @@ set -eo pipefail
|
|||||||
[[ $TRACE ]] && set -x
|
[[ $TRACE ]] && set -x
|
||||||
|
|
||||||
# https://nginx.org/en/download.html
|
# https://nginx.org/en/download.html
|
||||||
NGINX_VERSION="1.29.3"
|
NGINX_VERSION="1.29.5"
|
||||||
NGINX_TARBALL="nginx-${NGINX_VERSION}.tar.gz"
|
NGINX_TARBALL="nginx-${NGINX_VERSION}.tar.gz"
|
||||||
# https://github.com/PCRE2Project/pcre2/releases
|
# https://github.com/PCRE2Project/pcre2/releases
|
||||||
PCRE_VERSION="10.47"
|
PCRE_VERSION="10.47"
|
||||||
@ -12,7 +12,7 @@ PCRE_TARBALL="pcre2-${PCRE_VERSION}.tar.gz"
|
|||||||
# https://github.com/gliderlabs/sigil/releases
|
# https://github.com/gliderlabs/sigil/releases
|
||||||
SIGIL_VERSION="0.11.5"
|
SIGIL_VERSION="0.11.5"
|
||||||
# https://github.com/madler/zlib/releases
|
# https://github.com/madler/zlib/releases
|
||||||
ZLIB_VERSION="1.3.1"
|
ZLIB_VERSION="1.3.2"
|
||||||
ZLIB_TARBALL="zlib-${ZLIB_VERSION}.tar.gz"
|
ZLIB_TARBALL="zlib-${ZLIB_VERSION}.tar.gz"
|
||||||
|
|
||||||
suppress() {
|
suppress() {
|
||||||
|
|||||||
@ -24,7 +24,6 @@ http {
|
|||||||
types_hash_max_size 2048;
|
types_hash_max_size 2048;
|
||||||
include mime.types;
|
include mime.types;
|
||||||
charset UTF-8;
|
charset UTF-8;
|
||||||
access_log stdout;
|
|
||||||
|
|
||||||
server {
|
server {
|
||||||
listen {{ $.PORT }};
|
listen {{ $.PORT }};
|
||||||
|
|||||||
Reference in New Issue
Block a user