-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrvp.yaml
148 lines (132 loc) · 3.05 KB
/
rvp.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
apiVersion: v1
kind: ConfigMap
metadata:
name: rvp-config
data:
config.yaml: |
user www-data;
worker_processes auto;
pid /run/nginx.pid;
error_log /var/log/nginx/error.log;
include /etc/nginx/modules-enabled/*.conf;
events {
worker_connections 768;
# multi_accept on;
}
http {
##
# Basic Settings
##
sendfile on;
tcp_nopush on;
types_hash_max_size 2048;
# server_tokens off;
# server_names_hash_bucket_size 64;
# server_name_in_redirect off;
include /etc/nginx/mime.types;
default_type application/octet-stream;
##
# SSL Settings
##
ssl_protocols TLSv1 TLSv1.1 TLSv1.2 TLSv1.3; # Dropping SSLv3, ref: POODLE
ssl_prefer_server_ciphers on;
##
# Logging Settings
##
access_log /var/log/nginx/access.log;
##
# Gzip Settings
##
gzip on;
# gzip_vary on;
# gzip_proxied any;
# gzip_comp_level 6;
# gzip_buffers 16 8k;
# gzip_http_version 1.1;
# gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;
##
# Virtual Host Configs
##
include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*.conf;
}
site.conf: |
server {
listen 80;
server_name wiki.uniproject-tech.net;
return 301 https://wiki.uniproject.jp$request_uri;
}
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: nginx-rvp
spec:
selector:
matchLabels:
app: nginx-rvp
template:
metadata:
labels:
app: nginx-rvp
spec:
containers:
- name: nginx-rvp
image: nginx:latest
resources:
limits:
memory: "128Mi"
cpu: "500m"
ports:
- containerPort: 80
volumeMounts:
- name: rvp-config
mountPath: /etc/nginx/nginx.conf
subPath: config.yaml
- name: rvp-config
mountPath: /etc/nginx/sites-enabled/site.conf
subPath: site.conf
volumes:
- name: rvp-config
configMap:
name: rvp-config
---
apiVersion: v1
kind: Service
metadata:
name: nginx-rvp
spec:
selector:
app: nginx-rvp
ports:
- port: 80
targetPort: 80
type: ClusterIP
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: unipro-site-old-ingress
namespace: growi
annotations:
cert-manager.io/cluster-issuer: le-cf-prod
nginx.ingress.kubernetes.io/ssl-redirect: "false"
ngins.ingress.kubernetes.io/force-ssl-redirect: "false"
nginx.ingress.kubernetes.io/from-to-www-redirect: "true"
spec:
ingressClassName: nginx
rules:
- host: wiki.uniproject-tech.net
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: nginx-rvp
port:
number: 80
tls:
- hosts:
- wiki.uniproject-tech.net
secretName: unipro-www-old-tls