gitflow-release-stash: 0.1.0

main
naicoi 2023-04-11 19:54:05 +07:00
parent 7d3b5c0774
commit d3b78c73db
Signed by: naicoi
GPG Key ID: 7142E472DF7CF7D9
3 changed files with 36 additions and 0 deletions

13
.woodpecker.yml Normal file
View File

@ -0,0 +1,13 @@
pipeline:
image-build:
image: plugins/docker
settings:
registry: techio.dev
repo: techio.dev/${CI_REPO}
tags:
- alpine
username: deploy
password:
from_secret: deploy_password
when:
event: tag

2
Dockerfile Normal file
View File

@ -0,0 +1,2 @@
FROM nginx:alpine
COPY default.conf /etc/nginx/conf.d

21
default.conf Normal file
View File

@ -0,0 +1,21 @@
server {
listen 80;
server_name $host;
index index.php index.html index.htm;
index index.php;
client_max_body_size 1G;
location / {
try_files $uri $uri/ /index.php?$args;
}
location ~ \.php$ {
try_files $uri = 404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass wordpress:9000;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
}
}