déplacement .Keys et config

This commit is contained in:
2024-10-16 09:30:41 +02:00
parent 8e1261cfa7
commit 848fc4909e
11 changed files with 71 additions and 15 deletions
+1 -1
View File
@@ -32,6 +32,6 @@
<body class="mat-app-background">
<app-root></app-root>
<script src="runtime.475575d3cc22a138.js" type="module"></script><script src="polyfills.febf6ea84d149d1b.js" type="module"></script><script src="main.5bb5111fcbed767e.js" type="module"></script></body>
<script src="runtime.475575d3cc22a138.js" type="module"></script><script src="polyfills.febf6ea84d149d1b.js" type="module"></script><script src="main.f88d7f0fb1b9344b.js" type="module"></script></body>
</html>
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+26 -7
View File
@@ -1,10 +1,29 @@
server {
listen 80;
server_name jucundus.saucisse.ninja;
listen 80;
location / {
root /usr/share/nginx/html;
index index.html;
try_files $uri $uri/ /index.html;
}
gzip on;
gzip_http_version 1.1;
gzip_disable "MSIE [1-6]\.";
gzip_min_length 256;
gzip_vary on;
gzip_proxied expired no-cache no-store private auth;
gzip_types text/plain text/css application/json application/javascript application/x-javascript text/xml application/xml application/xml+rss text/javascript;
gzip_comp_level 9;
client_max_body_size 5M;
proxy_read_timeout 200s;
index index.html;
location / {
include /etc/nginx/mime.types;
root /usr/share/nginx/html;
add_header Cache-Control "public, max-age=1M";
try_files $uri $uri/ /index.html =404;
}
location /healthcheck {
access_log off;
add_header 'Content-Type' 'text/plain';
return 200 "Healthy\n";
}
}
+1 -1
View File
@@ -4,5 +4,5 @@ export const environment = {
production: true,
logLevel: NgxLoggerLevel.OFF,
serverLogLevel: NgxLoggerLevel.ERROR,
ServeurURL: "https://jucundus.saucisse.ninja:3000/backend"
ServeurURL: "https://jucundus-api.saucisse.ninja"
};