Skip to content

Commit 2c90f09

Browse files
committed
test
1 parent 8af257c commit 2c90f09

File tree

2 files changed

+2
-10
lines changed

2 files changed

+2
-10
lines changed

Dockerfile

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,4 @@
11
FROM nginx:alpine
22
COPY nginx.conf /etc/nginx/nginx.conf
33

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
4+
EXPOSE 80

nginx.conf

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,9 @@ http {
1010
gzip_min_length 1000;
1111

1212
server {
13-
listen 443 ssl;
13+
listen 80;
1414
server_name localhost;
1515

16-
ssl_certificate nginx.crt;
17-
ssl_certificate_key nginx.key;
18-
1916
client_max_body_size 0;
2017

2118
location ~ "^/[a-z0-9]{32}/geode/" {

0 commit comments

Comments
 (0)