1. Servidor web

Note

Servidor web - HTTPD

1dnf install httpd
2systemctl enable httpd
3systemctl start httpd

Directorio de trabajo /etc/httpd/conf.d

  1. Almacén de claves

htpasswd -c httpasswd <diego>
  1. Configuración para sphinx [Nuevo fichero]

    Alias /docus /opt/sphinx
    <Directory "/opt/sphinx">
          DirectoryIndex index.html
          Options FollowSymLinks
          AllowOverride All
    
          AuthName "Docus Access"
          AuthType Basic
          AuthUserFile /etc/httpd/conf.d/htpasswd
          Require valid-user
    
    </Directory>