ALT Linux Sisyphus discussions
 help / color / mirror / Atom feed
* [sisyphus] apache2 & dspam webui
@ 2007-09-03 12:58 Алексей Шенцев
  2007-09-03 13:07 ` Igor Zubkov
  0 siblings, 1 reply; 9+ messages in thread
From: Алексей Шенцев @ 2007-09-03 12:58 UTC (permalink / raw)
  To: ALT Linux Sisyphus discussion list

Привет всем!
Пытаюсь прикрутить к апачу dspam-webui. Делаю почти как сказано в 
http://gentoo-wiki.com/HOWTO_Spam_Filtering_with_DSPAM_and_Postfix#Web_Interface.3F
и получаю:
Invalid command 'AuthFileName', perhaps misspelled or defined by a module not 
included in the server configuration

Как и куда правильно подобное прописывать?
-- 
С уважением Шенцев Алексей Владимирович.
E-mail: ashen@nsrz.ru
XMPP: ashen@altlinux.org, AlexShen@jabber.ru
ICQ: 271053845

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [sisyphus] apache2 & dspam webui
  2007-09-03 12:58 [sisyphus] apache2 & dspam webui Алексей Шенцев
@ 2007-09-03 13:07 ` Igor Zubkov
  2007-09-03 13:13   ` Алексей Шенцев
  0 siblings, 1 reply; 9+ messages in thread
From: Igor Zubkov @ 2007-09-03 13:07 UTC (permalink / raw)
  To: ALT Linux Sisyphus discussion list

2007/9/3, Алексей Шенцев <ashen@nsrz.ru>:
> Привет всем!
> Пытаюсь прикрутить к апачу dspam-webui. Делаю почти как сказано в
> http://gentoo-wiki.com/HOWTO_Spam_Filtering_with_DSPAM_and_Postfix#Web_Interface.3F
> и получаю:
> Invalid command 'AuthFileName', perhaps misspelled or defined by a module not
> included in the server configuration
>
> Как и куда правильно подобное прописывать?

<Directory /home/*/public_html/cgi-bin>
   Options ExecCGI
   AuthType Basic
   AuthName "dspam"
   Require valid-user
   AuthFileName /var/www/localhost/password
   #Use AuthUserFile instead of AuthFileName for apache 2.0.55 (that
was my version) and above
   SetHandler cgi-script
</Directory>

С той страницы. Перевести?

-- 
icesik

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [sisyphus] apache2 & dspam webui
  2007-09-03 13:07 ` Igor Zubkov
@ 2007-09-03 13:13   ` Алексей Шенцев
  2007-09-03 13:32     ` Igor Zubkov
  0 siblings, 1 reply; 9+ messages in thread
From: Алексей Шенцев @ 2007-09-03 13:13 UTC (permalink / raw)
  To: ALT Linux Sisyphus discussion list

В сообщении от Monday 03 September 2007 17:07:12 Igor Zubkov написал(а):
> 2007/9/3, Алексей Шенцев <ashen@nsrz.ru>:
> > Привет всем!
> > Пытаюсь прикрутить к апачу dspam-webui. Делаю почти как сказано в
> > http://gentoo-wiki.com/HOWTO_Spam_Filtering_with_DSPAM_and_Postfix#Web_In
> >terface.3F и получаю:
> > Invalid command 'AuthFileName', perhaps misspelled or defined by a module
> > not included in the server configuration
> >
> > Как и куда правильно подобное прописывать?
>
> <Directory /home/*/public_html/cgi-bin>
>    Options ExecCGI
>    AuthType Basic
>    AuthName "dspam"
>    Require valid-user
>    AuthFileName /var/www/localhost/password
>    #Use AuthUserFile instead of AuthFileName for apache 2.0.55 (that
> was my version) and above
>    SetHandler cgi-script
> </Directory>
>
> С той страницы. Перевести?

Ню-ню, переведи. Ещё один перевод мне не помешает ... ;) Я ведь спрашивал, где 
должен быть прописан параметр AuthFileName, ибо как я понимаю apache2 
ругается на недопустимость его использования в httpd2.conf

-- 
С уважением Шенцев Алексей Владимирович.
E-mail: ashen@nsrz.ru
XMPP: ashen@altlinux.org, AlexShen@jabber.ru
ICQ: 271053845

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [sisyphus] apache2 & dspam webui
  2007-09-03 13:13   ` Алексей Шенцев
@ 2007-09-03 13:32     ` Igor Zubkov
  2007-09-03 13:57       ` Алексей Шенцев
  0 siblings, 1 reply; 9+ messages in thread
From: Igor Zubkov @ 2007-09-03 13:32 UTC (permalink / raw)
  To: ALT Linux Sisyphus discussion list

2007/9/3, Алексей Шенцев <ashen@nsrz.ru>:
> В сообщении от Monday 03 September 2007 17:07:12 Igor Zubkov написал(а):
> > 2007/9/3, Алексей Шенцев <ashen@nsrz.ru>:
> > > Привет всем!
> > > Пытаюсь прикрутить к апачу dspam-webui. Делаю почти как сказано в
> > > http://gentoo-wiki.com/HOWTO_Spam_Filtering_with_DSPAM_and_Postfix#Web_In
> > >terface.3F и получаю:
> > > Invalid command 'AuthFileName', perhaps misspelled or defined by a module
> > > not included in the server configuration
> > >
> > > Как и куда правильно подобное прописывать?
> >
> > <Directory /home/*/public_html/cgi-bin>
> >    Options ExecCGI
> >    AuthType Basic
> >    AuthName "dspam"
> >    Require valid-user
> >    AuthFileName /var/www/localhost/password
> >    #Use AuthUserFile instead of AuthFileName for apache 2.0.55 (that
> > was my version) and above

Используйте AuthUserFile вместо AuthFileName для апача 2.0.55 (эта
версия у меня) и выше.

> >    SetHandler cgi-script
> > </Directory>
> >
> > С той страницы. Перевести?
>
> Ню-ню, переведи.

Так лучше?

-- 
icesik

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [sisyphus] apache2 & dspam webui
  2007-09-03 13:32     ` Igor Zubkov
@ 2007-09-03 13:57       ` Алексей Шенцев
  2007-09-03 14:56         ` Yury L.Olkov
  0 siblings, 1 reply; 9+ messages in thread
From: Алексей Шенцев @ 2007-09-03 13:57 UTC (permalink / raw)
  To: ALT Linux Sisyphus discussion list

В сообщении от Monday 03 September 2007 17:32:54 Igor Zubkov написал(а):
> Используйте AuthUserFile вместо AuthFileName для апача 2.0.55 (эта
> версия у меня) и выше.
Угу ...

> Так лучше?

О сём не ведаю, ибо в таком случае получаю:

Invalid command 'AuthUserFile', perhaps misspelled or defined by a module not 
included in the server configuration

-- 
С уважением Шенцев Алексей Владимирович.
E-mail: ashen@nsrz.ru
XMPP: ashen@altlinux.org, AlexShen@jabber.ru
ICQ: 271053845

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [sisyphus] apache2 & dspam webui
  2007-09-03 13:57       ` Алексей Шенцев
@ 2007-09-03 14:56         ` Yury L.Olkov
  2007-09-28 11:22           ` Алексей Шенцев
  0 siblings, 1 reply; 9+ messages in thread
From: Yury L.Olkov @ 2007-09-03 14:56 UTC (permalink / raw)
  To: ALT Linux Sisyphus discussion list

Алексей Шенцев пишет:
> В сообщении от Monday 03 September 2007 17:32:54 Igor Zubkov написал(а):
>> Используйте AuthUserFile вместо AuthFileName для апача 2.0.55 (эта
>> версия у меня) и выше.
> Угу ...
> 
>> Так лучше?
> 
> О сём не ведаю, ибо в таком случае получаю:
> 
> Invalid command 'AuthUserFile', perhaps misspelled or defined by a module not 
> included in the server configuration
> 
А покажите что у вас в /etc/httpd2/conf/mods-enabled

--
King Regards
Yury


^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [sisyphus] apache2 & dspam webui
  2007-09-03 14:56         ` Yury L.Olkov
@ 2007-09-28 11:22           ` Алексей Шенцев
  2007-09-29 13:22             ` Yury L.Olkov
  0 siblings, 1 reply; 9+ messages in thread
From: Алексей Шенцев @ 2007-09-28 11:22 UTC (permalink / raw)
  To: ALT Linux Sisyphus discussion list

В сообщении от Monday 03 September 2007 18:56:51 Yury L.Olkov написал(а):
> А покажите что у вас в /etc/httpd2/conf/mods-enabled
[root@gw mods-enabled]# ls | sort
alias.load
authz_host.load
autoindex.load
cgi.load
dir.load
expires.load
include.load
log_config.load
logio.load
mime.conf
mime.load
negotiation.load
suexec.load
[root@gw mods-enabled]# 
-- 
С уважением Шенцев Алексей Владимирович.
E-mail: ashen@nsrz.ru
XMPP: ashen@altlinux.org, AlexShen@jabber.ru
ICQ: 271053845

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [sisyphus] apache2 & dspam webui
  2007-09-28 11:22           ` Алексей Шенцев
@ 2007-09-29 13:22             ` Yury L.Olkov
  2007-10-01  7:26               ` Алексей Шенцев
  0 siblings, 1 reply; 9+ messages in thread
From: Yury L.Olkov @ 2007-09-29 13:22 UTC (permalink / raw)
  To: ALT Linux Sisyphus discussions

Алексей Шенцев пишет:
> В сообщении от Monday 03 September 2007 18:56:51 Yury L.Olkov написал(а):
>> А покажите что у вас в /etc/httpd2/conf/mods-enabled
> [root@gw mods-enabled]# ls | sort
> alias.load
> authz_host.load
> autoindex.load
> cgi.load
> dir.load
> expires.load
> include.load
> log_config.load
> logio.load
> mime.conf
> mime.load
> negotiation.load
> suexec.load
> [root@gw mods-enabled]# 

Попробуй добавить auth_basic, authn_file и authz_user

--
King Regards
Yury


^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [sisyphus] apache2 & dspam webui
  2007-09-29 13:22             ` Yury L.Olkov
@ 2007-10-01  7:26               ` Алексей Шенцев
  0 siblings, 0 replies; 9+ messages in thread
From: Алексей Шенцев @ 2007-10-01  7:26 UTC (permalink / raw)
  To: ALT Linux Sisyphus discussions

В сообщении от Saturday 29 September 2007 17:22:52 Yury L.Olkov написал(а):
> Алексей Шенцев пишет:
> > В сообщении от Monday 03 September 2007 18:56:51 Yury L.Olkov написал(а):
> >> А покажите что у вас в /etc/httpd2/conf/mods-enabled
> >
> > [root@gw mods-enabled]# ls | sort
> > alias.load
> > authz_host.load
> > autoindex.load
> > cgi.load
> > dir.load
> > expires.load
> > include.load
> > log_config.load
> > logio.load
> > mime.conf
> > mime.load
> > negotiation.load
> > suexec.load
> > [root@gw mods-enabled]#
>
> Попробуй добавить auth_basic, authn_file и authz_user

Спасибо, соотвествующие ссылки я добавил, о чём писал в sysadmins@.
-- 
С уважением Шенцев Алексей Владимирович.
E-mail: ashen@nsrz.ru
XMPP: ashen@altlinux.org, AlexShen@jabber.ru
ICQ: 271053845

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2007-10-01  7:26 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-09-03 12:58 [sisyphus] apache2 & dspam webui Алексей Шенцев
2007-09-03 13:07 ` Igor Zubkov
2007-09-03 13:13   ` Алексей Шенцев
2007-09-03 13:32     ` Igor Zubkov
2007-09-03 13:57       ` Алексей Шенцев
2007-09-03 14:56         ` Yury L.Olkov
2007-09-28 11:22           ` Алексей Шенцев
2007-09-29 13:22             ` Yury L.Olkov
2007-10-01  7:26               ` Алексей Шенцев

ALT Linux Sisyphus discussions

This inbox may be cloned and mirrored by anyone:

	git clone --mirror http://lore.altlinux.org/sisyphus/0 sisyphus/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 sisyphus sisyphus/ http://lore.altlinux.org/sisyphus \
		sisyphus@altlinux.ru sisyphus@altlinux.org sisyphus@lists.altlinux.org sisyphus@lists.altlinux.ru sisyphus@lists.altlinux.com sisyphus@linuxteam.iplabs.ru sisyphus@list.linux-os.ru
	public-inbox-index sisyphus

Example config snippet for mirrors.
Newsgroup available over NNTP:
	nntp://lore.altlinux.org/org.altlinux.lists.sisyphus


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git