-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Configuration not reliable #51
Comments
@alexandrestein I would need help here. Along with this I have some other tasks pending:
|
Signed-off-by: Alexandre Stein <[email protected]>
Your fixe is much better than my ugly and quick patch. Before this configuration was working: address: ":8080"
hosts:
localhost:
paths:
"/":
plugins:
-
name: static
html5: true
browse: true
root: "/" But now it returns 404. The problem is that the host match does not clean the port. address: ":8080"
hosts:
localhost:8080:
paths:
"/":
plugins:
-
name: static
html5: true
browse: true
root: "/" I'm not certain than this is the behavior you want. (It does not look pretty to me.) About the issue we are talking, the problem looks to be solved with your update. |
Just did a commit, can you verify now? |
Now both configuration returns 404. 😢 |
Check now.
…On Tue, Jun 18, 2019 at 11:07 AM Alexandre Stein ***@***.***> wrote:
Now both configuration returns *404*. 😢
—
You are receiving this because you modified the open/close state.
Reply to this email directly, view it on GitHub
<#51?email_source=notifications&email_token=AACMVNATUKGUCBXNIGMH6GTP3EP5FA5CNFSM4HXYMGYKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODX7PLXI#issuecomment-503248349>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AACMVNF7XAULMJRJAGJDT2TP3EP5FANCNFSM4HXYMGYA>
.
|
It is working without the port at the host definition. Which is exactly what I would expect 😄 Thank you, |
Sorry, I been too fast. 😢 It's not working. Hosts are mixed-up redirection and proxies are totally broken... I will take a look but do not cut the release. |
@alexandrestein Take your time. |
I did found where to solve the problem. It's like Armor register hosts without port. Which is good. Does this make sens? |
@alexandrestein Is it still broken for you? I used port while registering the host in Armor. |
Yes @vishr 😄 I was taking a look at this. Because you register the host with the HTTP port only. For example, this configuration works for HTTP but not for HTTPS: address: ":8000"
tls:
address: ":4430"
cert_file: testing/keys/localhost.crt
key_file: testing/keys/localhost.key
key_pinning: true
hosts:
localhost:
plugins:
-
name: static
html5: true
browse: true
root: "." |
I will look into it today. |
@alexandrestein Can you try now? |
Well it seems to be working for standard port. If we need to run the server at a specific port the configuration is not working for both ports. |
I'm not sure if I should open an other issue; but redirection replies me 404. |
Can you share a simple config to debug?
…On Mon, Jun 24, 2019 at 8:12 AM Alexandre Stein ***@***.***> wrote:
I'm not sure if I should open an other issue; but redirection replies me
*404*.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#51?email_source=notifications&email_token=AACMVNC5VAXJIXJ2IS5NDDLP4DP4VA5CNFSM4HXYMGYKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODYNIDHY#issuecomment-505053599>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AACMVNCEXIUIVE2CZKSZ4XLP4DP4VANCNFSM4HXYMGYA>
.
|
For the redirection, as simple as possible: address: ":80"
tls:
address: ":443"
cert_file: testing/keys/localhost.crt
key_file: testing/keys/localhost.key
hosts:
localhost:
plugins:
-
name: redirect
from: "*"
to: "https://github.com/labstack/armor/issues/51" |
@alexandrestein I have pushed a new release, most likely |
Hi @vishr. The same test works with my master branch which is a previous release with some changes I don't remember what. Take a look and tell me if I missed something. If you have the same conclusion as I me. I should make a PR of the testing branch. |
To run the test I go to the root directory of the package and I run Sorry, the package I'm using for generating the certificates is written for go starting at |
I tried multiple times now to add some headers to some of my hosts and to active GZIP on specific paths.
I never made it because in fact the configuration of the plugin is very hazardous.
After many tries, it appears that plugins are loaded randomly.
I tried to check if the plugging order mater but it seams like it does not.
Here is an config example:
You can make it even simpler but here is the point.
If I run the process with the same config and same build I have random result:
curl --compressed --head localhost:8080/ HTTP/1.1 200 OK Content-Type: text/html; charset=UTF-8 Server: armor/0.4.13 Date: Thu, 13 Jun 2019 10:31:35 GMT
curl --compressed --head localhost:8080/ HTTP/1.1 200 OK Content-Type: text/html; charset=UTF-8 Server: armor/0.4.13 Date: Thu, 13 Jun 2019 10:31:36 GMT
curl --compressed --head localhost:8080/ HTTP/1.1 200 OK Content-Type: text/html; charset=UTF-8 Server: armor/0.4.13 Date: Thu, 13 Jun 2019 10:31:50 GMT
It looks like the static plugin is always loaded but the GZIP and header are not always.
In the first command header are OK but not the GZIP.
In the second, third and fourth none GZIP or header are loaded.
And in the last one finally is what I expect.
We can't relay on this behavior and I did not found where to dig.
Please take a look to this, because it's a terrible thing.
The text was updated successfully, but these errors were encountered: