diff --git a/.gitignore b/.gitignore index f4d432a..a3c59dd 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,4 @@ # Dependency directories (remove the comment below to include it) # vendor/ +target/ \ No newline at end of file diff --git a/target/adminui/index.html b/target/adminui/index.html deleted file mode 100644 index 30bd6d0..0000000 --- a/target/adminui/index.html +++ /dev/null @@ -1,5 +0,0 @@ - - -

GoHttpd Running...

- - \ No newline at end of file diff --git a/target/config.json b/target/config.json deleted file mode 100644 index 2b896a6..0000000 --- a/target/config.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "logging" :{ - "appenders": { - "out" :{ - "type": "file", - "options":{ - "file": "gohttpd.log" - } - }, - "stdout":{ - "type": "console" - } - }, - "categories": { - "default": { - "appenders": [ "out" ,"stdout"], - "level": "debug" - } - } - }, - "admin" : { - "name": "admin", - "port" : 8088, - "username": "admin", - "password": "admin", - "directives":[ - "Set-Header Access-Control-Allow-Origin *", - "Set-Header Access-Control-Allow-Methods GET, POST, PUT, DELETE, OPTIONS", - "Set-Header Access-Control-Allow-Headers Content-Type, Authorization, Content-Length, X-Requested-With" - ], - "paths": [ - { - "path": "/", - "root": "./adminui", - "default": "index.html" - } - ] - }, - "servers":[{ - "port" : 8080, - "name":"demo", - "paths":[ - { - "path": "/", - "root": "./public/", - "default": "index.html" - }, - { - "path": "/ws", - "upstreams":["http://localhost:3000"], - "pathrewrite": { - "replace": "/ws", - "with": "/" - } - } - ] - }] -} \ No newline at end of file diff --git a/target/gohttpd b/target/gohttpd deleted file mode 100755 index eb244dd..0000000 Binary files a/target/gohttpd and /dev/null differ