diff --git a/config/freebsd/nginx.aux.conf.arm b/config/freebsd/nginx.aux.conf.arm index dc218f2..4009a83 100755 --- a/config/freebsd/nginx.aux.conf.arm +++ b/config/freebsd/nginx.aux.conf.arm @@ -46,4 +46,13 @@ http { index index.html; root ../static; } + + server { + listen 127.0.0.1:9103; + index index.html; + root ../static; + + # include application routes; this path is relative to this conf file! + include ../../app/conf/kernel-api-aux.conf; + } } diff --git a/config/freebsd/nginx.aux.conf.x64 b/config/freebsd/nginx.aux.conf.x64 index 3de533f..602746e 100755 --- a/config/freebsd/nginx.aux.conf.x64 +++ b/config/freebsd/nginx.aux.conf.x64 @@ -45,4 +45,13 @@ http { index index.html; root ../static; } + + server { + listen 127.0.0.1:9103; + index index.html; + root ../static; + + # include application routes; this path is relative to this conf file! + include ../../app/conf/kernel-api-aux.conf; + } }