rejetto forum

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - chris.zeman

Pages: 1
1
Bug reports / Re: HFS Icons through an Apache Reverse Proxy
« on: September 04, 2007, 04:42:47 AM »
$25? ???

2
Bug reports / Re: HFS Icons through an Apache Reverse Proxy
« on: August 29, 2007, 03:57:43 AM »
I'll tell you what, Rejetto. I'll pledge $10 towards HFS is we can get this working. :)

Here is my Virtual Host configuration. Maybe someone will notice something that's missing. Perhaps the solution is simple. :)

Code: [Select]
NameVirtualHost *
<VirtualHost *>
        ServerAdmin webmaster@localhost

        DocumentRoot /var/www/
        <Directory />
                Options FollowSymLinks
                AllowOverride None
        </Directory>
        <Directory /var/www/>
                Options Indexes FollowSymLinks MultiViews
                AllowOverride None
                Order allow,deny
                allow from all
                # This directive allows us to have apache2's default start page
                # in /apache2-default/, but still have / go to the right place
                #RedirectMatch ^/$ /apache2-default/
        </Directory>

        ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
        <Directory "/usr/lib/cgi-bin">
                AllowOverride None
                Options ExecCGI -MultiViews +SymLinksIfOwnerMatch
                Order allow,deny
                Allow from all
        </Directory>

        ErrorLog /var/log/apache2/error.log

        # Possible values include: debug, info, notice, warn, error, crit,
        # alert, emerg.
        LogLevel warn

        CustomLog /var/log/apache2/access.log combined
        ServerSignature On

    Alias /doc/ "/usr/share/doc/"
    <Directory "/usr/share/doc/">
        Options Indexes MultiViews FollowSymLinks
        AllowOverride None
        Order deny,allow
        Deny from all
        Allow from 127.0.0.0/255.0.0.0 ::1/128
    </Directory>

RewriteEngine On
RewriteRule .* - [CO=BALANCEID:balancer.automation:.domain.net]
</VirtualHost>

<VirtualHost *>
    ServerName eng.domain.net
    ProxyRequests Off
    ProxyPreserveHost On

    <Proxy *>
        Order deny,allow
        Allow from all
    </Proxy>

    ProxyPass / http://172.16.1.20/
    ProxyPassReverse / http://172.16.1.20

    <Location />
        Order allow,deny
        Allow from all
    </Location>
</VirtualHost>



3
Bug reports / Re: HFS Icons through an Apache Reverse Proxy
« on: July 02, 2007, 11:26:57 AM »
Yes, exactly. :)

I downloaded every image, moved it to a directory on my server, and then modified the template in HFS to load the images from a URL that wasn't being forwarded through my server. It didn't work right for some reason. I can't remember what icon showed up next to all the files, but it was the same for all the files. I must have done something wrong.

Chris

4
Bug reports / Re: HFS Icons through an Apache Reverse Proxy
« on: July 02, 2007, 04:05:35 AM »
Hi rejetto,

No, it's not a bug. I have a THEORY as to why Apache does this. I don't know if Apache is the only web server that does this, but here is my theory. If there was a web server with the domain example.com, and the server administrator allowed each user to have a web site on their server, the site would typically be accessed by going to http://example.com/~username. The server knows by the tilde (spelled right?) to serve the files located in the user's home directory.

I believe Apache is looking for home directories for imgxx or whatever. I think (and hope) I explained this right. :)

I think Admin_from_Hell's suggestion would do the trick.

Thank you,
Chris

5
Bug reports / Re: HFS Icons through an Apache Reverse Proxy
« on: February 12, 2007, 01:48:09 PM »
Those options were all disabled. Here are the customized options:

Code: [Select]
easy=no
default: yes

tpl-font=Tahoma|10|clBlack|
default: Tahoma|10|clWindowText|

log-file-name=C:\Log.txt
default:

log-date=yes
default: no

log-replies=no
default: yes

confirm-exit=yes
default: no

search-better-ip=no
default: yes

start-minimized=yes
default: no

files-stay-flagged-for-minutes=1000
default: 0

auto-save-vfs=yes
default: no

use-comment-as-realm=no
default: yes

beep-on-flash=yes
default: no

list-protected-items=yes
default: no

auto-save-vfs-every=6000
default: 0

auto-save-cfg-every=6000
default: 0

flash-on=connection
default: download

last-file-open=C:\My Documents\HFS.vfs
default:

find-external-on-startup=yes
default: no

mime-types=*.htm;*.html|text/html|*.jpg;*.jpeg;*.jpe|image/jpeg|*.gif|image/gif|*.png|image/png|*.bmp|image/bmp|*.ico|image/x-icon|*.mpeg;*.mpg;*.mpe|video/mpeg|*.avi|video/x-msvideo|*.txt|text/plain
default: *.htm;*.html|text/html|*.jpg;*.jpeg;*.jpe|image/jpeg|*.gif|image/gif|*.png|image/png|*.bmp|image/bmp|*.ico|image/x-icon|*.mpeg;*.mpg;*.mpe|video/mpeg|*.avi|video/x-msvideo|*.txt|text/plain|*.css|text/css

address2name=Mike|xx.xxx.xx.xx|Mike J Laptop|xx.xx.xxx.xx|Mike J Home|xx.xxx.xx.xx|Mike Home|xx.xxx.xxx.x|New Jersey|xx.xxx.xxx.xx
default:

recents=C:\My Documents\HFS.vfs
default:

tray-instead-of-quit=yes
default: no

out-total=135108178
default: 0

in-total=10388769
default: 0

copy-url-on-start=yes
default: no

connections-columns=IP;170|Filename;160|Status;100|Speed;80|Time left;55|%;512|
default: IP;120|Filename;180|Status;180|Speed;60|Time left;55|%;50|

Thank you,
Chris

6
Bug reports / Re: HFS Icons through an Apache Reverse Proxy
« on: February 06, 2007, 11:42:13 PM »
Yes. Actually, pretty much any image. Here is a screenshot:




Thank you,
Chris

7
Bug reports / HFS Icons through an Apache Reverse Proxy
« on: February 05, 2007, 05:29:55 PM »
HFS has proven to be an extremely valuable tool in our organization. Great job, rejetto! I am, unfortunately, having one problem.

I have a Linux server acting as an internet gateway for our LAN, and a general purpose web server. HFS is running on another employee's machine on our LAN. It's a long story, but both machines MUST be able to serve pages on port 80, so I can't simply forward port 80 to HFS. I configured Apache to act as a reverse proxy for the computer running HFS, assigning a sub-domain to the HFS macine. I can connect to HFS from the internet, upload and download files, but HFS's icons aren't being displayed.

I am sure this is a configuration problem with Apache, but figured this forum would be the best place to start. I just need something to go on.

Thank you,
Chris

Pages: 1