Add automation for ADML HTTP image creation
[anna.git] / docker-images / anna-adml-http / etc / nginx / conf.d / default.conf
1 server {
2   listen 8074 http2;
3   listen [::]:8075 http2;
4   #It is possible to enable another port for pure HTTP11:
5   #listen 8073;
6   #listen [::]:8073;
7
8   server_name localhost;
9
10   location / {
11       proxy_pass http://localhost:8000/;
12   }
13 }
14