Hiya
It's 57N open day again, come along if you fancy. I'll be in from 7pm
till about 9pm, probably a fair chance folk will be around later than
me too. Hit back with a reply if you like, let us know your plans.
See you there
Andy
Hello All
Today is the openday for the Space.
Last week we has some people turn up and the space wasn't open, I'm working tonight and can't be there, will anyone else be along, or shall we saw we won't be open?
Midder
All:
Just for information
I am seeing a lot of probing on servers I run publically for:
wordpress login page
dotfiles - (for non unix people those are files that start with a period
that do not show with ls unless you use -a)
e.g.
env
git
awscredentials
For the later if you run nginx as the gatekeeper you may find this
stanza useful
location ~ /\..* {
return 444;
}
It matches any dotfile and instructs nginx to just drop the connection
without responding at all. If you use letsencrypt you will have to also
use a match on
location /.well-known/acme-challenge {
to allow certificate renewal.
All:
Just for information
I am seeing a lot of probing on servers I run publically for:
wordpress login page
dotfiles - (for non unix people those are files that start with a period
that do not show with ls unless you use -a)
e.g.
env
git
awscredentials
For the later if you run nginx as the gatekeeper you may find this
stanza useful
location ~ /\..* {
return 444;
}
It matches any dotfile and instructs nginx to just drop the connection
without responding at all. If you use letsencrypt you will have to also
use a match on
location /.well-known/acme-challenge {
to allow certificate renewal.