Если делаю такое же в Open Server, то входит без запроса логина/пароля.
apache (чистый):
LoadModule _1cws_module "c:/Program Files (x86)/1cv81/bin/wsap22.dll"
<VirtualHost *:80>
DocumentRoot "D:/Web/"
ServerName web1c
ServerAlias www.web1c
<Directory "D:/Web/">
DirectorySlash Off
SetHandler 1cws-process
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
Open Server:- Apache-2.2_server.conf
LoadModule _1cws_module "c:/Program Files (x86)/1cv81/bin/wsap22.dll"- Apache-2.2_vhost.conf
<VirtualHost *:80> DocumentRoot "%hostdir%" ServerName "%host%" ServerAlias "%host%" %aliases% <Directory "%hostdir%"> DirectorySlash Off SetHandler 1cws-process AllowOverride All Order allow,deny Allow from all </Directory> </VirtualHost>Подскажите, пожалуйста, как сделать авторизацию и в Open Server?
