Skip to content

Commit 335fb64

Browse files
committed
いったんためす
1 parent 54a6a68 commit 335fb64

File tree

5 files changed

+61
-7
lines changed

5 files changed

+61
-7
lines changed

.github/workflows/nginx-push-ghcr.yaml

+2-4
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ name: nginx-push-ghcr
22

33
on:
44
push:
5-
branches:
6-
- main
75
pull_request:
86
types:
97
- opened
@@ -54,8 +52,8 @@ jobs:
5452
- name: Build and push
5553
uses: docker/build-push-action@v6
5654
with:
57-
context: ./docker/nginx
58-
file: ./docker/nginx/Dockerfile
55+
context: ./docker/production/nginx
56+
file: ./docker/production/nginx/Dockerfile
5957
platforms: linux/amd64
6058
tags: ${{ steps.meta.outputs.tags }}
6159
labels: ${{ steps.meta.outputs.labels }}

compose.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services:
55
dockerfile: ../../docker/akane-next/Dockerfile
66
command: ["npm", "run", "dev"]
77
ports:
8-
- "3800:3000"
8+
- "3000:3000"
99
- "5555:5555" # for prisma studio
1010
develop:
1111
watch:
@@ -19,17 +19,17 @@ services:
1919
path: package.json
2020
environment:
2121
DATABASE_URL: "mysql://root@db:3306/akane"
22-
depends_on:
23-
- db
2422

2523
nginx:
2624
image: nginx:latest
2725
build:
2826
context: docker/nginx
2927
dockerfile: ./Dockerfile
3028
ports:
29+
- "80:80"
3130
- "443:443"
3231
depends_on:
32+
- db
3333
- akane-next
3434

3535
db:
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
server {
2+
listen 80;
3+
server_name admin.local.akane.yaken.org;
4+
5+
location / {
6+
proxy_pass http://akane-next:3000/admin/;
7+
}
8+
9+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
server {
2+
listen 80;
3+
server_name local.akane.yaken.org;
4+
5+
location / {
6+
proxy_pass http://akane-next:3000/;
7+
}
8+
9+
location /admin {
10+
deny all;
11+
return 403;
12+
}
13+
}

docker/production/nginx/nginx.conf

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
user nginx;
2+
worker_processes auto;
3+
4+
error_log /var/log/nginx/error.log notice;
5+
pid /var/run/nginx.pid;
6+
7+
events {
8+
worker_connections 2048;
9+
multi_accept on;
10+
use epoll;
11+
}
12+
13+
http {
14+
include /etc/nginx/mime.types;
15+
default_type application/octet-stream;
16+
server_tokens off;
17+
tcp_nopush on;
18+
reset_timedout_connection on;
19+
20+
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
21+
'$status $body_bytes_sent "$http_referer" '
22+
'"$http_user_agent" "$http_x_forwarded_for"';
23+
24+
access_log /var/log/nginx/access.log main;
25+
26+
sendfile on;
27+
28+
keepalive_timeout 65;
29+
30+
# コメントアウトしているが、問題がなければ有効にしてもいいだろう
31+
#gzip on;
32+
33+
include /etc/nginx/conf.d/*.conf;
34+
}

0 commit comments

Comments
 (0)