[Previo por Fecha] [Siguiente por Fecha] [Previo por Hilo] [Siguiente por Hilo]

[Hilos de Discusión] [Fecha] [Tema] [Autor]

Re: Problema de WEB Solucionado!!! :-)



Fabian Vera wrote:

>         Gracias a todos por ayudarme a quitarme de la mente las dudas de
> que estaba mal.. pues ya supe que era lo que estaba mal... sólo comente
> unas lineas que yo pense que estaban correctas pero la ayuda de apache
> dice que no... que es un error de no se que empaquetador... hay les va lo
> que hice:
>
> #<Files ~>
> #        AllowOverride AuthConfig FileInfo Indexes Limit Options
> #    Order allow,deny
> #    Deny from all
> #</Files>
>
>         Eso fue todo!!!!  :-)  espero eso sirva a los qu tengan el mismo
> probleema que yop!!! y pues asi funciono.
>

Alternativamente (según recomendación del httpd.conf oficial):

#
# Control access to UserDir directories.  The following is an example
# for a site where these directories are restricted to read-only.
#
<Directory /home/*/public_html>
    AllowOverride FileInfo AuthConfig Limit
    Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
    <Limit GET POST OPTIONS PROPFIND>
        Order allow,deny
        Allow from all
    </Limit>
    <LimitExcept GET POST OPTIONS PROPFIND>
        Order deny,allow
        Deny from all
    </LimitExcept>
</Directory>
#
# AccessFileName: The name of the file to look for in each directory
# for access control information.
#
AccessFileName .htaccess

#
# The following lines prevent .htaccess files from being viewed by
# Web clients.  Since .htaccess files often contain authorization
# information, access is disallowed for security reasons.  Comment
# these lines out if you want Web visitors to see the contents of
# .htaccess files.  If you change the AccessFileName directive above,
# be sure to make the corresponding changes here.
#
# Also, folks tend to use names such as .htpasswd for password
# files, so this will protect those as well.
#
<Files ~ "^\.ht">
    Order allow,deny
    Deny from all
</Files>


>
>
>  --
> Sandino Araico Sánchez
> Technology Prostitute: A technology prostitute is a software coder who will
> program anything for money. Programming language, operating system or morality
> of the company who wants the coded project are of minor importance compared to
> the paycheck.
> -- Brian Kirkby
>

---------------------------------------------------------
para salir de la lista, enviar un mensaje con las palabras
"unsubscribe ayuda" en el cuerpo a majordomo en linux org mx



[Hilos de Discusión] [Fecha] [Tema] [Autor]