Ubuntu :: 9.10 - Configure FTP In Apache
Jun 7, 2010
I'm running Ubuntu 9.10 in VirtualBox (OS X host) with Apache 2.1.12. I am developing in NetBeans on OS X and would like to FTP my code to Ubuntu to test on Apache. However, I'm not sure how to install mod_ftp in Apache on Ubuntu.
View 2 Replies
ADVERTISEMENT
Mar 3, 2011
The web server component of Apache isn't actually called "Apache" right? It is called something else? I didn't realize there were so many parts. Also, is there a good newbie introduction to how to configure it for a basic web server?
View 5 Replies
View Related
May 13, 2009
I am making a webserver running apache2.2.11. The webserver is running fine. I didn't configure/enabling apache with ssl when compiling. So how do I get my webserver to run the SSL? As far as I now apache2.2.11 i does not require to download mod_ssl and openssl, to have the webserver run SSL, But I should have something like this:
# /configure --prefix=/usr/local/apache --with-ssl=/usr/bin
When configuring. Is there a way I can enable it now and do I need to install something before enabing it? Or can I just redo this:
# /configure --prefix=/usr/local/apache --enable-ssl
And then rewrite the old version I have with no problems?
View 2 Replies
View Related
Aug 30, 2010
I've a task to configure an apache 2.2 with ssl.
View 1 Replies
View Related
Oct 15, 2010
My project for today has been setting up a web server. I was given a old computer with a Pentium 4 processor; 512mb of RAM, and a 42gig hard drive.I was reading over some guides and I came across this guide. It is very self explanatory; however I am having issues with my configuration files within Apache and my firewall (shorewall).I am focusing on web security. I don't even want to web edit until I know it is "lock-down" secure. In Apache are some supposed settings called Server Tokens and SeverSignature. I can't locate these files in my apache2.conf unfortunately.Here is what is posted to me in the config:
Code:
#
# Based upon the NCSA server configuration files originally by Rob McCool.
#
# This is the main Apache server configuration file. It contains the
# configuration directives that give the server its instructions.
[code]....
Then press Control-O and Control-X. Your firewall is now configured to only accept HTTP and SSH traffic.I couldn't get that line of code to run. I've been all over the Ubuntu forums, google, Apache 2.2...
View 5 Replies
View Related
Oct 25, 2010
I need to configure Apache for a 16 GB Server for maximum performance. It should have maximum requests and also with stand load. I have given the current configuration below.
<IfModule prefork.c>
StartServers 8
MinSpareServers 5
[code]...
View 1 Replies
View Related
Jan 12, 2011
I want to configure Apache server in Red Hat advance server i make a web page in html foam
View 9 Replies
View Related
May 27, 2010
I need to configure CHROOT for Apache 2.2.15.
I have a LAMP stack on my RHEL 5.0 box. LAMP Stack details (if required) are :
Code:
I have a rough idea that this can be done by mod_chroot somehow.
Any idea which version of mod_chroot to use and how ?
This is my /usr/local/apache/conf/httpd.conf
Code:
View 2 Replies
View Related
Feb 10, 2010
how can i install and configure Apache-Ant .
View 1 Replies
View Related
Sep 23, 2010
I'M trying to configure SVN in CentOS 5 without Apache, the connection should be possible with some SVNClient like tortoisesvn or another.
Following this guide i proceeded:
yum install subversion
useradd -d /home/svnroot -c subversion svn
passwd svn
svnadmin create /home/svnroot/proyecto_1
pico /etc/csf/csf.conf (enabled ports and restart with csf -r)
[Code].....
how to connect to the repository from my PC?
I don't know how to do it
I understand that this svn are running with svnserve but i don't know the way to connect from my PC with a svnclient, like rapidsvn or another.
View 2 Replies
View Related
Jul 7, 2010
I'm trying to setup puppet to install and configure apache on several servers. Having found: [URL] I thought I was onto something. However I'm a little lost, does anyone know of or can anyone write a small howto on how to get this module working on certain nodes. My current state is puppet is running and connected to the puppetmaster. I can do simple things but the apache install have lost me a little.
View 1 Replies
View Related
Nov 23, 2010
I'm trying to setup puppet to install and configure apache on several servers. Having found:
[URL]
I thought I was onto something. However I'm a little lost, does anyone know of or can anyone write a small howto on how to get this module working on certain nodes.My current state is puppet is running and connected to the puppetmaster. I can do simple things but the apache install have lost me a little.
View 4 Replies
View Related
Oct 9, 2009
I have apatchi (httpd) installed on Fedora, and I am trying to configure the virual server. I have two websites: [URL] and [URL] and the machine has one public IP address. The problem that:
It always returning the default virual host (even if we typed in the url: [URL] or [URL]), it returns the default configured one (which is the first configured virual host). I have one public address on my machine, and my configuration as following:
[Code]....
Actually [URL] is the one which is used for the global configuration.
View 10 Replies
View Related
Nov 20, 2010
I'm using the yast2 gui interface to configure apache. I think its called yast2_http_server. I added one website with *:80 set as the virtualhost ID. When I go to add a second website with the same thing, it errors out with: The IP address is already configured on another virtual host: *:80/mydomain.com. I have another opensuse box with many websites in apache configured this way.
View 1 Replies
View Related
Mar 5, 2011
I am running 11.3 64bit. I need to set up a simple web server, and I was trying to follow this tutorial to do it HowTo: Configure a Linux Apache Web Server on Suse/openSUSE for SSI, Includes, CGI, Common Gateway Interface, AddHandler, ExecCGI, AllowOverride, htaccess, DocumentRoot The web server is running but this part could not be applied and I need to change the ownership. it seems the command lampserver does not exist.
[Code]...
View 8 Replies
View Related
Feb 23, 2010
I want to configure NTLM for my Apache webserver, so that it uses active directory login credentials.
Additional info : my listen port will be 82 (http://xxxx.com:82)
View 1 Replies
View Related
Oct 4, 2010
I have a question to masters of Apache. In my operating system (CentOS 5) I have installed two Apaches. One is Apache (port 80) from repository where I planning to configure proxy and second one is Apache integrated(port 8090) with KnowledgeTree software. The problem is that when I am trying to configure proxy reverse it simply doesn't work.
This is link to KnowledgeTree software:
- http://127.0.0.1:8090/knowledgeTree
This link I would like to rewrite with proxy like this:
https://myserver.com/knowledgeTree
(HTTPS dont forget)
In my ssl.conf in VirtualHost part I have created something like this:
Code:
<IfModule mod_proxy.c>
<Proxy *>
Order allow,deny
Allow from all
</Proxy>
ProxyRequests off
ProxyPass /knowledgeTree http://127.0.0.1:8090/knowledgeTree
ProxyPassReverse /knowledgeTree http://127.0.0.1:8090/knowledgeTree
<Location /knowledgeTree/>
ProxyPassReverse /
</Location>
</IfModule>
When I am trying to connect I see only: Unable to connect. Firefox can't establish a connection to the server at ifdocu.contaxt.biz:8090.
View 4 Replies
View Related
Jun 27, 2011
I am trying to configure Apache to handle virtual hosts. For this I un-commented the line in httpd.conf that say
Include /etc/httpd/extra/httpd-vhosts.conf
Then I included the following in httpd-vhosts.conf:
<VirtualHost *:80>
<Directory /var/www/git.localhost/gitorious/public>
Options FollowSymLinks
AllowOverride None
Order allow, deny
Allow from All .....
View 6 Replies
View Related
Mar 7, 2011
For some of the files that I share using Apache, I want to make sure that they are served ONLY via https.
How can I configure this for Apache?
View 1 Replies
View Related
Mar 4, 2010
I am trying o configure phpLDAPadmin on OEL 5 with apache 2.2.14 ,php 5.13 and phpLDAPadmin 1.2.0.4
apache directory = /apache
php directory = /apache/php/
phpLDAPadmin directory = /var/www/phpLDAPadmin 1.2.0.4
I am following the way given in the website : [URL]... but after configuring when i am trying to connect to the site [URL]... Authentication Fails and I am not able to log in with my LDAP user "Manager" I am using openldap version 2.4.21
View 9 Replies
View Related
Aug 11, 2011
*Am trying to configure on machine ?MyServer.net? apache on port 8586. *Two applications run on same machine on different ports Jenkins on 8081 and Hudson on 8080.*Request coming to 8586 port should redirect to either 8080 or 8081 on one condition. *The request from client machine coming to MyServernet:8586 looks something like this ?MyServer.net/job/<JOBNAME>/build?token=TOKEN?.
Condition
If <JOBNAME> is ?naveen? apache should redirect to 8081.
If <JOBNAME> is not ?naveenn? apache should redirect to 8080.
[code]...
View 1 Replies
View Related
Jun 12, 2010
Is there any GUI to configure Apache for linux stuff like ReverseProxy etc taken care by it.Doesn't seem many.
View 2 Replies
View Related
Jun 21, 2010
I've searched the web and couldn't find anything simple to configure GlassFish-v2(port 8080) to use Apache's Port 80. Similar to how tomcat's 8080 port workds with mod_jk. Anyone have a sample configuration file of GlassFish or Apache's mod_jk that they have working
View 1 Replies
View Related
May 14, 2009
Most of my googling odysseies lead me to articles which talk about compiling apache & php from the source as this is touted to be more flexible. But the problem we have is this...we already have an apache 2 web server running. Now how do we serve php pages of it.
View 1 Replies
View Related
Feb 17, 2010
I have a problem to correctly configure apache / subversion and mod_dav in openSUSE 11.2 I have setup a virtual host on my home server (because I need to access it from the Internet), that should be a subversion server. The subversion root directory is the
Code:
/srv/svn/repos
I plan to use a separate directory for each project.
So, the svn tree will be/srv/svn/repos/project1/....
/srv/svn/repos/project2/....
/srv/svn/repos/project3/..
Apache serves the web pages (actually the directories) but since the documentroot and the SVN root are the same, it cannot handle the SVN repositories correctly. So, I re-read the Setting up a Subversion server using Apache2 - openSUSE how-to and followed it's suggestion. (Use a Location outside the document root) Anyway, the problem is that I have a 404 error, which of course is normal, since there is no alias set for the /rep location I use.
[Code]...
View 1 Replies
View Related
Feb 1, 2010
Is there any way to get the configure line that was used to build an Apache installation from source.
I compiled Apache 2.2.14 a while ago on Ubuntu and I can't remember the ./configure line I used to build it. Is there any way I can retrieve it?
View 4 Replies
View Related
Jan 31, 2011
How can I configure apache2 to show the error message in the browser? Just for the purposes of debugging, I do not want to have to open the server error log every time.
View 1 Replies
View Related
Jun 2, 2011
I've been for a while trying to configure my apache to host 5 domains as virtualhosts in the same IP address, but seems that neither one makes it through... it always takes first one, because it is the default:
NameVirtualHost *:80
<VirtualHost *:80>
ServerAdmin xxxxxxx@xxxx.net
[code]....
As you can see I tried the ServerName with the http://, in quotes, without it...
View 11 Replies
View Related
Jan 23, 2010
i'm using James on Cent OS 5.4. NOw we figured out, that our firewall changes the signed mails on the signing gateway, which is the Cent OS Server with James. So... the question ist, how do i configure James to send mails out directly... not passing it to the firewall?
View 3 Replies
View Related
Aug 29, 2011
Is there a way to configure Apache so that if a user tries to access a webpage that doesn't exist under mydomain.com, that it redirects that user to the index.php?
View 1 Replies
View Related