add target to ignore
This commit is contained in:
parent
d84337c845
commit
d180d65524
|
@ -15,3 +15,4 @@
|
||||||
# Dependency directories (remove the comment below to include it)
|
# Dependency directories (remove the comment below to include it)
|
||||||
# vendor/
|
# vendor/
|
||||||
|
|
||||||
|
target/
|
|
@ -1,5 +0,0 @@
|
||||||
<html>
|
|
||||||
<body>
|
|
||||||
<h1>GoHttpd Running...</h1>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -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": "/"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}]
|
|
||||||
}
|
|
BIN
target/gohttpd
BIN
target/gohttpd
Binary file not shown.
Loading…
Reference in New Issue