nip.io/src
yuki Niikura 48cac19640 Fixed regular expression.
In python 2.7.13-2, if the 134th line of nip.py is as follows
     match = re.findall('^(?:.+\.)?(\d{1,3}([-.])\d{1,3}\2\d{1,3}\2\d{1,3})$', subdomain)
The execution result of dig will be as follows.
$ dig 1.2.3.4.example.com +short @localhost
127.0.0.1
$

As a result of correcting the 134th line as follows,
     match = re.findall('^(?:.+\.)?(\d{1,3}[-.]\d{1,3}[-.]\d{1,3}[-.]\d{1,3})$', subdomain)
The execution result of dig is corrected as follows.
$ dig 1-2-3-4.example.com +short @localhost
1.2.3.4
$
2019-05-20 16:53:19 +00:00
..
backend.conf.example rename example backend.conf and use example.com 2017-01-16 12:02:56 +01:00
nip.py Fixed regular expression. 2019-05-20 16:53:19 +00:00