Skip to content
Snippets Groups Projects
Commit ebea643a authored by trantzas's avatar trantzas
Browse files

Merge branch '15-update-obsolete-nginx-configuration-for-image-build' into 'develop'

Resolve "Update obsolete nginx configuration for image build"

See merge request !9
parents e34fd2a6 0852a029
No related branches found
No related tags found
2 merge requests!13Merging 2024Q2_RC into main, creating 2024Q2 Release,!9Resolve "Update obsolete nginx configuration for image build"
Pipeline #6068 passed
# Expires map # Expires map
map $sent_http_content_type $expires { map $sent_http_content_type $expires {
default off; default off;
...@@ -13,11 +12,11 @@ ...@@ -13,11 +12,11 @@
listen 80; listen 80;
include /etc/nginx/mime.types; include /etc/nginx/mime.types;
server_name localhost; server_name tmf_web;
location ^~/services/ { location / {
root /usr/share/nginx/html; root /usr/share/nginx/html/services;
index index.html index.htm; index index.html index.htm;
try_files $uri $uri/ /services/index.html =404; try_files $uri $uri/ /index.html =404;
} }
expires $expires; expires $expires;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment