[OT] Apache internal server redirects

Ask a Question related to PERL Beginners, Design and Development.

  1. #1

    Default [OT] Apache internal server redirects

    I have an internal server that I need to pass external visitors to from a
    web page. The internal server isn't set up to go through the firewall so I
    am looking for a way to make web server (which does play nice) to access
    the other server via http and let a user access the files and programs on
    it.

    I've been looking through the FAQs and googling it, but have not found a
    way to do it yet.

    Any thoughts?

    Thanks!

    Robert

    --------------------------------------------------------------------
    mail2web - Check your email from the web at
    http://mail2web.com/ .


    Lonewolf@Nc.Rr.Com Guest

  2. Similar Questions and Discussions

    1. Internal Server Error
      I have just brought up a web site using an MDB file on a Win 2003 system and I am getting the message: HTTP 500 - Internal server error Internet...
    2. 500 internal server error
      Hi all, Just wondering if you could possibly check this site for me - www.gtfasteners.co.uk . I am getting a 500 Internal Server Error message...
    3. Internal Server Error (500)
      I just installed Visual Studio 2003 and tried to create a Web Service project. I received HTTP/1.0 500 Internal Server Error. I confirmed that...
    4. Internal Server Error 500
      I keep getting IIS 500 internal error from the SOAP post rather than the details of the error. I have an XMl doc as <?xml version="1.0"...
    5. OS X Server Apache Redirects
      Hi there, I'm trying to get Mac OS X Server to admin apache as follows: All requests on port 80 should go direct to the URL...
  3. #2

    Default RE: [OT] Apache internal server redirects

    > I have an internal server that I need to pass external  

    Well how about this:
    http://publicserver.com/privateserver.pl
    Then privateserver.pl could grab content from the local files/scripts.

    HTH
    Dmuey
     
    Dan Guest

  4. #3

    Default RE: [OT] Apache internal server redirects

    <!-- snip -->
    Well how about this:
    http://publicserver.com/privateserver.pl
    Then privateserver.pl could grab content from the local files/scripts.

    HTH
    Dmuey
    <!-- snap -->

    Essentially I have live data feeds (cameras) that have an internal server.
    I want to link them to a web page from our intranet server (user/pw used to
    access) that will display the pages. I just don't know the trick to make
    the 10.1.1.20 server link up correctly to
    http://www.garlandcnorris.com/internals

    Thoughts?

    --------------------------------------------------------------------
    mail2web - Check your email from the web at
    http://mail2web.com/ .


    Lonewolf@Nc.Rr.Com Guest

  5. #4

    Default RE: [OT] Apache internal server redirects

    rr.com wrote: 

    That's called proxying. See the Apache mod_proxy module (if you're using
    Apache):

    http://httpd.apache.org/docs/mod/mod_proxy.html
    Bob Guest

  6. #5

    Default RE: [OT] Apache internal server redirects

    <!-- snip -->
    rr.com wrote: 

    That's called proxying. See the Apache mod_proxy module (if you're using
    Apache):

    http://httpd.apache.org/docs/mod/mod_proxy.html
    <!-- snap -->
    my httpd.conf file:

    ProxyRequests Off

    ProxyPass /foo http://foo.example.com/bar
    ProxyPassReverse /foo http://foo.example.com/bar

    I get the issue when I am accessing the page, the whole thing is a java
    program that I am accessing, and it is not able to find any of the files
    when I do it via proxy. I don't have a way to access the files yet (trying
    to figure out how to do that as well) since it is a closed-system that I am
    trying to get this proxy/forwarding to work with.

    ????

    --------------------------------------------------------------------
    mail2web - Check your email from the web at
    http://mail2web.com/ .


    Lonewolf@Nc.Rr.Com 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