OT: Apache installed from ports - broken images - more <directory> required?

Ask a Question related to FreeBSD, Design and Development.

  1. #1

    Default OT: Apache installed from ports - broken images - more <directory> required?

    So, I just updated my Apache (latest 1.3x) install, and an existing
    config problem has been brought to light.

    Part of my httpd.conf has:

    <Directory /usr/home/*/public_html>
    Order Deny,Allow
    Allow from all
    AllowOverride All
    </Directory>

    <VirtualHost *:80>
    ServerAdmin [email]webmaster@example.org[/email]
    DocumentRoot /usr/home/username/public_html
    ServerName [url]www.example.org[/url]
    ServerAlias example.org
    ErrorLog /var/log/example.org-error_log
    CustomLog /var/log/example.org-access_log common
    <Directory /usr/home/username/public_html>
    AllowOverride All
    </Directory>
    Alias /openwebmail "/usr/local/www/data-dist/openwebmail"
    </VirtualHost>

    So, the problem is: the images for openwebmail do not show up/are
    broken. Do I need to create a new:
    <Directory> tag with /usr/local/www/data-dist/openwebmail? Exactly
    like the one above?

    Or am looking in the wrong are?

    Thank you,

    ....D
    Danny Guest

  2. Similar Questions and Discussions

    1. most elegant way to find an installed datafile directory
      I continue on an old topic, on which I received some help (I cannot find anymore the link to the discussion, sorry): then: and Rob...
    2. UDP ports required for Cold Fusion MX talking to SQL2000
      We just had a super restrictive requirement put in that all UDP traffic except individual ports, be restricted. We have a dedicated Web/Cold Fusion...
    3. How to package up (all) installed ports
      What would be a good way to create binary packages of all/most of my currently installed ports (without rebuilding as "make package" does)? I...
    4. (Second try) I installed PHP from an RPM, but Apache isn't processingthe PHP pages! What's going on here?
      I did a mistake with the files name (http.conf ==> httpd.conf). See st the end....
    5. I installed PHP from an RPM, but Apache isn't processing the PHPpages! What's going on here?
      =============================================================================== I installed PHP from an RPM, but Apache isn't processing the PHP...
  3. #2

    Default Re: OT: Apache installed from ports - broken images - more <directory> required?

    Did you checks the permissions for the images directory? - I had a
    problem with qmailadmin once where it didnt show the images and it was
    permissions.


    On Thu, 24 Feb 2005 16:04:24 -0500, Danny <nocmonkey@gmail.com> wrote:
    > So, I just updated my Apache (latest 1.3x) install, and an existing
    > config problem has been brought to light.
    >
    > Part of my httpd.conf has:
    >
    > <Directory /usr/home/*/public_html>
    > Order Deny,Allow
    > Allow from all
    > AllowOverride All
    > </Directory>
    >
    > <VirtualHost *:80>
    > ServerAdmin [email]webmaster@example.org[/email]
    > DocumentRoot /usr/home/username/public_html
    > ServerName [url]www.example.org[/url]
    > ServerAlias example.org
    > ErrorLog /var/log/example.org-error_log
    > CustomLog /var/log/example.org-access_log common
    > <Directory /usr/home/username/public_html>
    > AllowOverride All
    > </Directory>
    > Alias /openwebmail "/usr/local/www/data-dist/openwebmail"
    > </VirtualHost>
    >
    > So, the problem is: the images for openwebmail do not show up/are
    > broken. Do I need to create a new:
    > <Directory> tag with /usr/local/www/data-dist/openwebmail? Exactly
    > like the one above?
    >
    > Or am looking in the wrong are?
    >
    > Thank you,
    >
    > ...D
    > _______________________________________________
    > [email]freebsd-questions@freebsd.org[/email] mailing list
    > [url]http://lists.freebsd.org/mailman/listinfo/freebsd-questions[/url]
    > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org"
    >

    --
    gabriel,

    Member of:
    FreeBSD-Announce
    FreeBSD-Hardware
    FreeBSD-Multimedia
    FreeBSD-questions
    gabriel Guest

  4. #3

    Default Re: OT: Apache installed from ports - broken images - more <directory> required?

    On Thu, 24 Feb 2005 13:15:11 -0800, gabriel <normal1.lists@gmail.com> wrote:
    > Did you checks the permissions for the images directory? - I had a
    > problem with qmailadmin once where it didnt show the images and it was
    > permissions.
    Yah, FreeBSD file system permissions are fine.

    ....D
    Danny Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139