[Eclug] Script - Apache Questions

  • Previous message: [Eclug] Script - Apache Questions
  • Next message: [Eclug] nagios/other recommendations?
  • Mister Rohit pigdog at gmail.com
    Wed Aug 1 16:20:46 EDT 2007

     

    1: apt should tell you if you use it interactively.  It is usually only a
    kernel update that requires this. I would not do a dist-upgrade unattended,
    and it is not really very easy to script.
    How are you doing this?
    
    2:  you need to use mod_userdir.  You can google instructions, but here is a
    snippet from my httpd.conf
    
    #
    # UserDir: The name of the directory that is appended onto a user's home
    # directory if a ~user request is received.
    #
    UserDir public_html
    #UserDir enabled
    #UserDir disabled maddox
    #
    # 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>
        php_flag engine off
        AllowOverride FileInfo AuthConfig Limit Indexes
        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>
    
    
    On 8/1/07, Ray Insalaco <ray.insalaco at gmail.com> wrote:
    >
    > Greetings,
    >
    > Question 1: I have a script that updates my notebook every Friday night
    > after creating a backup.  I am using apt-get dist-upgrade to do the
    > upgrade.  Is there a way to tell if any of the updates required a reboot?
    >
    > Question 2: I am trying to setup an apache web server that will allow
    > users to have a directory that can be viewed with
    > http://localhost/~username.  I have seen this done, but try as I might I
    > can not get it working.  Does anyone know of a how-to for configuring
    > this?
    >
    > I am running LinuxMint which is based on Ubuntu.
    >
    > Thanks,
    > Ray
    > _______________________________________________
    > Public archival of this list without permission is prohibited.
    > http://lists.eclug.net/mailman/listinfo/eclug
    >
    
    
    
    -- 
    "I'm not acting stupid"
    -------------- next part --------------
    An HTML attachment was scrubbed...
    URL: http://lists.eclug.net/pipermail/eclug/attachments/20070801/1677604d/attachment.htm 
    

     

     

    More information about the ECLUG mailing list