- suppress docs/

- clean up and modify readme
- launch docker
This commit is contained in:
asus
2023-09-03 16:39:41 +02:00
parent c12b121288
commit dbf2e27d89
6 changed files with 106 additions and 238 deletions

View File

@@ -39,7 +39,7 @@ COPY ./conf/ssl ${NG_VOLUME_CERTS}
RUN if [ -z "$(ls -A ${NG_VOLUME_CERTS} 2>/dev/null)" ]; then \
mkdir ${NG_VOLUME_CERTS}/private ${NG_VOLUME_CERTS}/certs; \
openssl req -newkey rsa:2048 -nodes -x509 -days 365 \
-subj "/C=fr/ST=ile-de-france/L=paris/O=42/OU=inception/CN=${WP_URL}" \
-subj "/C=fr/ST=ile-de-france/L=paris/O=42/OU=lejourdesprofs/CN=${WP_URL}" \
-keyout ${NG_VOLUME_CERTS}/private/${WP_URL}.key \
-out ${NG_VOLUME_CERTS}/certs/${WP_URL}.crt; \
fi