Forum

access, auth and charset

Xan
24 October 2009, 20:14
Hi,

I don't know if it's the right place to post, but it's an equivalent features of access, auth, charset of nginx [http://wiki.nginx.org/NginxModules]?:

- with access: I want to enable or disable access for some ip:
deny 192.168.1.1;
allow 192.168.1.0/24;
allow 10.1.1.0/16;
deny all;

- with charset I want to stablish the charset: charset utf-8
- with auth I want to enable authorization for seeing a webpage. For login users.

Regards,
Xan.
Hugo Leisink
24 October 2009, 20:20
- Hiawatha can already do IP based access. See the AccessList setting in the manual page.

- Output encoding, such as character sets, is something the CGI process must do.

- Hiawatha can already do authorization. See the PasswordFile setting in the manual page.
Xan
24 October 2009, 20:47
Thanks a lot, Hugo. I will see it.
Xan.
This topic has been closed.