We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8af257c commit 2c90f09Copy full SHA for 2c90f09
Dockerfile
@@ -1,9 +1,4 @@
1
FROM nginx:alpine
2
COPY nginx.conf /etc/nginx/nginx.conf
3
4
-RUN \
5
- apk add openssl && \
6
- openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout /etc/nginx/nginx.key -out /etc/nginx/nginx.crt -subj "/C=FR/ST=France/L=Pau/O=Geode-solutions"
7
-
8
9
-EXPOSE 443
+EXPOSE 80
nginx.conf
@@ -10,12 +10,9 @@ http {
10
gzip_min_length 1000;
11
12
server {
13
- listen 443 ssl;
+ listen 80;
14
server_name localhost;
15
16
- ssl_certificate nginx.crt;
17
- ssl_certificate_key nginx.key;
18
19
client_max_body_size 0;
20
21
location ~ "^/[a-z0-9]{32}/geode/" {
0 commit comments