There are problems when the Gohtttserver application is running through the configuration file: testdata/config.yml. When you launch the app
$ gohttpserver --conf=config.yml
using only the config.yml configuration file:
---
# Configuration Go HTTP Server
# [Link](https://github.com/codeskyblue/gohttpserver )
#
root: ./dir
port: 1234
auth-type: http
auth-http: username1:password1
Then the application is allowed on the site without any authorization.
When you specify the same parameters via the command line, the application requires authorization.
$ gohttpserver --conf=config.yml --auth-type http --auth-http username1:password1
This has been verified with basic authorization, OpenID, OAuth2.
There are problems when the Gohtttserver application is running through the configuration file: testdata/config.yml. When you launch the app
$ gohttpserver --conf=config.ymlusing only the config.yml configuration file:
Then the application is allowed on the site without any authorization.
When you specify the same parameters via the command line, the application requires authorization.
$ gohttpserver --conf=config.yml --auth-type http --auth-http username1:password1This has been verified with basic authorization, OpenID, OAuth2.