IIS Transparent Server-side Redirection
Sep 18, 2008
I've been asked to find a way to host our intranet externally without opening up the network.
The webserver accessible to the public domain is within an dmz. The intranet I need to serve is within our internal network.
I've managed to convince our network admin to open port 80 on the server running the intranet but I can't seem to find a way to proxy the content from the intranet server, through the webserver and to the user.
View 3 Replies
ADVERTISEMENT
Sep 26, 2008
My server is Win2003 Standard with IIS 6. I'm using IIS6 to host websites but i have a need to run subversion which require Apache. I'm wondering would it cause any problem with my current operation. Apache will run on different port than the standard 80.
View 3 Replies
View Related
Jun 13, 2007
how to run SSI(server side includes) on my linus server,
View 1 Replies
View Related
Apr 30, 2007
Say i wrote the following PhP program:
<?
$content=file_get_contents[url]
echo $content;
?>
So, basically, I have made my webserver into some form of proxy right.
I access [url] through my webserver. Hence, the Ip that shows up in web is the IP of my webserver.
[url]
In transparent proxy, the site can just pass on the IP address of the surfer.
How do I modify the program so that [url]still display the IP address of my PC, or whoever access [url]
View 1 Replies
View Related
Jun 16, 2009
I have issue with my shared server. Someone used SSI to local attack user on my server.
I want to disable SSI but i dont find out how to ? (expect manual recomplie apache)
View 14 Replies
View Related
Jun 25, 2009
I am trying to follow this guide on how to configure procmail:
[url]
I can login to my dedicated server via SSH, but how do I edit files etc. should this be done via SFTP, or via Shell?
View 0 Replies
View Related
Jan 30, 2008
I want to enable our server ssi server side includes (.shtml parsed).
My hosting company controls our server uptime, daily backup, server loads etc. when i request them; can you please enable ssi for shtml pages, i want to use ssi includes etc.. they suggested me use php instead of shtml for includes.
I want to .shtml, beacuse i use only ssi include header, footer same pages, also these pages search engine friendly.
Apache version: 2.0.52
I posted them please add following lines and restart apache afterwards:
Options +IncludesNoExec
AddType text/html .shtml
AddOutputFilter INCLUDES .shtml
They added and restarted apache, but not any affect. When i access .shtml pages via web browser, page opening successfully but not parse ssi includes, example:
<!--#include file="header.html" -->
but not parse, also i cannot use .htaccess files, our server admin say restricted them because security reasons.
I requested them our server root username and password, they say to me; before give you server root password, we remove all our server administration software from server and server administration service will be cancelled.
View 5 Replies
View Related
Nov 20, 2007
i was wondering if there is any other free anti-spam filter other than Spam Assassin that can be used on a VPS account?
View 13 Replies
View Related
Apr 18, 2009
Does anyone know how I can create a server-side filter in Plesk 8? I need to filter incoming mail to my mail server (using X-Forwarded-For.
View 0 Replies
View Related
Aug 14, 2007
This topic has probably been covered many times. I am trying to block spam bots from direclty accessing scripts on my site. Measures I have taken thus far, also block my site pages that want are designed to use the scripts. This includes Hot Link Protection and a couple of directives in the .htaccess file.
how I can block direct access to my scripts?
View 0 Replies
View Related
Jun 18, 2008
I've problem with my system (Dell vostro200) I've Mcafee security center and it will block some scripts running in the system during the browsing. I can't use any of vBulletin forums ( registration and posting ) I can't do even Mcafee online registratation also. I'm not an expert in os configurations.
View 0 Replies
View Related
Jul 29, 2007
I run an established web design business, and currently host my client sites at resellerzoom.com
I offer hosting to my customers and the numbers are growing so I need to upgrade to something more robust, but keep the end-user support (my customers can get support directly from host, and they will attempt to operate without their branding)
Here are my requirements:
End user support
WHM/Cpanel preferrably (or plesk equivelant)
512 - 1GB ram
50 - 100GB monthly transfer
I have been looking at modvps.com as they are owned by Hosting Zoom, which also owns resellerzoom.com
View 2 Replies
View Related
Jul 16, 2015
Our servers has been updated recently and my site is not working properly. It was working before the server change. When I click on the links, it doesn't update correctly, instead it gets the last cached data. I have to refresh each link for it to update which shouldn't be the case. I'm a front-end and have no access to servers. Could this be server-related?
View 1 Replies
View Related
Oct 24, 2007
I have a quick question about some DNS zones I'm trying to set up for a customer. I figured I would try asking the community before bugging our top-level admins (they have enough to do already, and I'd rather learn this myself).
We have a customer for whom we are managing their DNS. The site is actually hosted elsewhere, but the DNS originates on our server.
They have another site that is hosted with us, and they would like to set up a subdomain redirect from the remotely-hosted site to the site hosted on our hardware. So, the situation looks something like this:
example.com : hosted elsewhere (primary IP not ours), DNS with us
FooSite.example.com : redirect this to www.FooSite.com
I could edit httpd.conf, but it would be easiest (for firewall reasons at the moment) if I could enter in the proper zones via WHM zone editor. I'll be able to see the results either way. I tried setting up the 'A' and 'CNAME' records, and I got as far as directing the 'A' records for the subdomain to the local IP, but I'm not sure how to finish it off (assuming I'm going down the right path). My own knowledge level in this regard is somewhere between novice and intermediate (which is why I have partners and admins ).
View 10 Replies
View Related
May 26, 2013
I have a Public [82.x.x.x] and Private Apache Servers [192.168.20.100], and wish to redirect a series of subdomain requests i.e. for joomla.example.com or moodle.example.com on 82.x.x.x => joomla.example.com or moodle.example.com on 192.168.20.100.
joomla.example.com [82.x.x.x] returns joomla.example.com [192.168.20.100]
moodle.example.com [82.x.x.x] however returns joomla.example.com [192.168.20.100]
VHOST Configuration on [82.x.x.x]:
<VirtualHost *:80>
ServerName joomla.example.com
RewriteEngine On
RewriteRule ^(.*)$ http://192.168.20.100$1 [P]
</VirtualHost>
<VirtualHost *:80>
ServerName moodle.example.com
RewriteEngine On
RewriteRule ^(.*)$ http://192.168.20.100$1 [P]
</VirtualHost>
----------
VHOST Configuration on [192.168.20.100]
<VirtualHost *:80>
# joomla.example.com>
ServerName joomla.example.com
ServerAlias joomla.example.com
DocumentRoot /var/www/joomla/
ServerRoot /var/www/joomla/
ScriptAlias /cgi-bin/ /var/www/~cgi-bin/joomla/
ErrorLog /var/www/~log/joomla/error.log
CustomLog /var/www/~log/joomla/access.log combined
ErrorDocument 404 /404.htm
[Code] ......
View 2 Replies
View Related
Aug 16, 2007
Prior to installing FFmpeg and its dependencies, I want to know about FFmpeg server-side conversion without the php script. Does it require those php scripts in the first place or I can just run an ssh command?
Also, does this FFmpeg have a configuration file in which you can set the quality of the converted .fla videos?
How about a lossless quality conversion and keeping the size proportion of the video the same?
Meaning, for example, from .avi to .fla without sacrificing/loosing the quality much or noticeably.
View 2 Replies
View Related
Dec 6, 2008
Im wondering I have some things turned off like:
The PDO extension in PHP, pdo_mysql, etc.
Most scripts use PHP and MySQL extension so no problem at all until i came up with 1 little devil taht requires php with PDO and pdo_mysql
My question is, is there any side effect on a production server if i recompile apache with those extensiones turned on?
Do they run in parallel to the way php and mysql runs now or will it break the whole scripts running and send the server to hell?
Basically what i mean is, i have the resources on the server to run it but do they run in parallel or they change/reconfigure the whole way php and mysql works?
View 3 Replies
View Related
Jul 23, 2009
I configured WebDisk on my webhost (via cPanel) and it works great on one computer but with the other there is a slight problem:
When the password was first entered it was mistyped, saved somewhere (I have no idea where, that's what I am trying to find out) and now whenever I try to connect I receive an error:
Quote:
There was a problem connecting to the WebDisk service
I tried to reset the password via Internet Explorer (Tools | Options) but that cleared other passwords, not the WebDisk one.
Any idea how to reset that password (on Windows, the client side)?
View 5 Replies
View Related
Jul 1, 2009
Who in 5851 West Side Ave (Switch and Data facility) in North Bergen, NJ does half cabinets? Looking to get my hands on a half cab with 20amps. I know of AMC, already contacted them.
View 3 Replies
View Related
Jul 20, 2009
i have a cpanel server with centos,
and i put a script on it,
and i get the error
-----------------------------------------------------
Warning: Unknown: Your script possibly relies on a session side-effect which existed until PHP 4.2.3. Please be advised that the session extension does not consider global variables as a source of data, unless register_globals is enabled. You can disable this functionality and this warning by setting session.bug_compat_42 or session.bug_compat_warn to off, respectively. in Unknown on line 0
-----------------------------------------------------
View 5 Replies
View Related
Apr 19, 2007
How do I configure Lighttpd to serve images/javascript/css files that are littered about my websites? Can I just input the paths of all the directories that I want Lighttpd to serve from?
For example, I have 4 separate websites with each having a message board, main page etc... Could I have lighty serve the files from:
/var/www/html/site1/images
/var/www/html/site2/images
/var/www/html/site3/images
/var/www/html/site4/images
/var/www/html/site1/javascript
etc....
and have Apache serve the files from all the other directories?
View 8 Replies
View Related
Feb 27, 2009
My information:
I have my photography site (sfxphoto.com) currently being hosted as my main site (site contents are located inside of the publichtml folder). I also have my photo retouching site (elite-retouch.com) being hosted as a sub-domain under the main site (which has it's own folder inside of the publichtml folder). I'm being hosted through InfluxHost on a Linux server.
My Dilemma:
For the photo retouching site, I want to be able to give my clients their OWN FTP access to a designated potion of the server.
So, lets say my client upload directory is "publichtml/eliteretouch.com/client_ftp". I then want to be able to make a folder for (we'll call him) client_a inside of the "/client_ftp" folder. So the full directory to THAT clients specific folder will be: "publichtml/eliteretouch.com/client_ftp/client_a"
How can I:
1) ...set their specific FTP to open to their directory only?
2) ...ensure that they cannot navigate to other folders on my server?
3) ...make it so that the login information doesn't carry the MAIN site name, but the sub-domain site name instead?
View 7 Replies
View Related
Dec 3, 2008
I'm not sure if this is the right forum, or if anyone can suggest a message board where I might get support on this.
This is what I have. I have Apache and IIS both running on Windows 2k3.
Apache is running in reverse Proxy mode sending multiple domains/virtual hosts to IIS.
Code:
ProxyRequests Off
<VirtualHost *:80>
ProxyPreserveHost On
ProxyPass / http://localhost:8080
ProxyPassReverse / [url]
ServerName mydomain.com
</VirtualHost>
Now, if I type in [url]everything works great and IIS (listening on 127.0.0.1:8080) serves the page. However, I am doing custom error trapping, so when I type in [url](and /mydirectory doesn't exist on IIS) I need to fire ASP code (via custom error messages/handling) on the IIS server and then present a data driven page.
However, Apache is returning A 502 error:
Code:
Proxy Error
The proxy server received an invalid response from an upstream server.
The proxy server could not handle the request GET /mydirectory.
Reason: DNS lookup failure for: localhost:8080mydirectory
Is there a way for me to setup Apache to pass all error checking to IIS while using it as a reverse proxy?
View 0 Replies
View Related
May 28, 2008
Just a quick question, can i setup a cname to redirect user to a URL instead of domain.... like
mail.thedomain.com.incnamemail.google.com/a/thedomain.com
I have to do this on Windows server with IIS so i can't use mod_rewrite etc!
View 4 Replies
View Related
May 6, 2008
i just got code for .htaccess to redirect mydomain.com to a directory on the same domain here directory123 is that name of directory where i wanna redirect my domain but problem is that when i put complete url like
www.mydomain.com then it will successfull redirect to www.mydomain.com/direcotry123
But when i put address like mydomain.com without www then it will not redirect kindly check and let me know the correction to redirect it as well
Code:
# -FrontPage-
IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*
<Limit GET POST>
order deny,allow
deny from all
allow from all
</Limit>
<Limit PUT DELETE>
order deny,allow
deny from all
</Limit>
AuthName mydomain.com
AuthUserFile /home/username/public_html/_vti_pvt/service.pwd
AuthGroupFile /home/username/public_html/_vti_pvt/service.grp
#RedirectMatch permanent ^/$ [url]
RewriteEngine on
RewriteCond %{HTTP_HOST} ^www.mydomain.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.mydomain.com$ [NC]
RewriteRule .* http://www.mydomain.com/directory123
View 1 Replies
View Related
Dec 8, 2007
My company provides free websites using an automated website builder we designed years ago. We also offer a option where members can add a domain name to their site. Because all our members pages are generated dynamically by the web builder script, when member adds the domain name option we simply add a DNS entry that includes an A record that directs the domain name to the IP address of the account on the server where the web builder is installed. All domains point to the same script and that script looks the domain up in a database table and gets the web page data for that website.
membersite1.com = /home/webbuilder/public_html/index.php
membersite2.com = /home/webbuilder/public_html/index.php
We are about to launch a new website builder that is not database-driven but includes a sub-directory for each member site. So, I need to find a way to redirect each member's domain to their sub-directory
membersite1.com = /home/webbuilder/public_html/member/m/membersite1
membersite2.com = /home/webbuilder/public_html/member/m/membersite2
I thought I could do with mod_rewrite in a .htaccess file in /home/webbuilder/public_html:
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^membersite1.com [NC]
RewriteRule ^/(.*) ^/member/m/membersite1/$1 [L]
But it's not working. The .htaccess file has no impact at all.
.htaccess fle working? Or is there another, better way to point a domain name to a sub-directory?
View 0 Replies
View Related
Mar 30, 2007
Although I'm able to redirect my subdomain to the /htdocs/subdomain directory using a php script, but the URL changes from [url]to [url]
And since I'm on windows, htaccess doesn't seem to work for me. Tried adding VirtualHost thingy into httpd.conf but then Apache doesn't start with it.
Is there any way to redirect [url]to /htdocs/subdir without changing the URL?
View 11 Replies
View Related
Jun 12, 2008
when our customers enter the domain name in this format: http://www.domain.com:8443 the page will be redirect to https://our-datacenter-default-hostname:8443.
but if they enter httpS://www.domain.com:8443 , the page don't redirect to anywhere and every things is ok.
How can I change the URL that users redirect to when they don't enter "https" in addressbar?
View 6 Replies
View Related
Apr 5, 2007
I'm a reseller with a few seperate servers. Thus, trying to set up a 2ndry set of NS records. Setup as follow:
main-domain.com : Hosting domain
main-server.com : Main Reseller server, hosting main-domain.com
2nd-server.com : Another reseller server
hosted-domain.com : A domain hosted on my 2nd-server.com
1. Main domain DNS, pointing to main-server.com (On NS.main-server.com).
2. On main server, NS1 & NS2.main-domain.com pointing to NS.main-server.com)
3. On main server, set up 2ndry NS - NS3 & NS4.main-domain.com as CNAME pointing to 2nd-server.com (NS1 & NS2.2nd-server.com)
4. hosted-domain DNS pointing to NS3 & NS4.main-domain.com
Problem is, NS3 & NS4 are working - But when i try looking up hosted-domain.com i get a 404 error.
What am i doing wrong?
View 0 Replies
View Related