aboutsummaryrefslogtreecommitdiffstats
path: root/spring-front/nginx.conf
diff options
context:
space:
mode:
authorterminaldweller <thabogre@gmail.com>2022-03-21 08:44:47 +0000
committerterminaldweller <thabogre@gmail.com>2022-03-21 08:44:47 +0000
commit9c6713a8cee48529eb11f7b16845eb6bd1e2a482 (patch)
tree784f86fe95e051703fe07225ea9015a21058a9d7 /spring-front/nginx.conf
parentdaily commit.wip (diff)
downloadmdrtl-9c6713a8cee48529eb11f7b16845eb6bd1e2a482.tar.gz
mdrtl-9c6713a8cee48529eb11f7b16845eb6bd1e2a482.zip
wip
Diffstat (limited to 'spring-front/nginx.conf')
-rw-r--r--spring-front/nginx.conf18
1 files changed, 18 insertions, 0 deletions
diff --git a/spring-front/nginx.conf b/spring-front/nginx.conf
new file mode 100644
index 0000000..e726512
--- /dev/null
+++ b/spring-front/nginx.conf
@@ -0,0 +1,18 @@
+events {
+ worker_connections 1024;
+}
+http {
+ server {
+ listen 443 ssl;
+ keepalive_timeout 70;
+ ssl_certificate /certs/server.cert;
+ ssl_certificate_key /certs/server.key;
+ ssl_protocols TLSv1.2 TLSv1.3;
+ ssl_ciphers HIGH:!aNULL:!MD5;
+ sendfile on;
+ tcp_nopush on;
+ location / {
+ root /usr/share/nginx/html;
+ }
+ }
+}