@@ -0,0 +1,4 @@
+FROM nginx:latest
+EXPOSE 80
+COPY nginx.conf /etc/nginx/nginx.conf
+RUN rm /usr/share/nginx/html/* -rf
@@ -81,6 +81,7 @@ class Security : WebSecurityConfigurerAdapter() {
.csrf()
.disable()
.authorizeRequests()
+ .antMatchers("/**").permitAll()
.antMatchers("/api/new/person/**").permitAll()
.antMatchers("/ws/**").permitAll()
.anyRequest().authenticated()