kbss-cvut / 19msmt-distribution

MSMT Reliability Management System
GNU General Public License v3.0
0 stars 0 forks source link

Dockerization #25

Closed Matthew-Kulich closed 2 years ago

Matthew-Kulich commented 2 years ago

Context: I want the url "http://localhost:8090/fta-fmea" to redirect me to "http://localhost:8090/fta-fmea/"

When i add this to nginx config, then it redirects me to the "https://localhost/fta-fmea/" and i dont know why.

location = /fta-fmea {
       return 302 /fta-fmea/;
}

When i change the location to "= /test" ... everything works fine.