2
votes
0answers
48 views

How many connection can my website have? [closed]

As the traffic increased my website hangs quite regularly. The page visit is now averaging 50k per day. The static page loads fine, but when the page has mysql request it takes too much time to ...
1
vote
2answers
127 views

How can I make a webmail URL available from any hosted domain?

I run Roundcube webmail on my VPS. At the moment, it is only accessible from one virtual server hosted on the server, unless a separate Roundcube installation is created for other virtual servers. I ...
3
votes
1answer
1k views

Use different document root for subfolder of URL

I have an php application that uses an MVC framework. Lets say it lives here http://domain.com on the web and here /srv/www/domain.com on my server. I want http://domain.com/blog to use a wordpress ...
1
vote
2answers
217 views

How to split apache logfile per Month

I have a quite large apache logfile (2,5 G). Its that big because i havent used logrotate until now. Now the logs get rotated corretly but i want the rotation (one logfile per month) for the time ...
0
votes
1answer
3k views

Get the number of concurrent users in apache?

We want to know how many concurrent users the apache is serving at one time? Can I do it by installing some statistics tools? I tried webalizer but it only shows hourly hits, not the number of users. ...
0
votes
2answers
925 views

.htaccess rule not working without HTTP redirect [R]

I am using the following .htaccess with Wordpress to remove index.php from the visible URL. This works but forces an http redirect so the URL changes in the browser window. If I remove the [R] it no ...
0
votes
4answers
168 views

DNS configuration on website makes it available only some of the time

The DNS configuration on my website is periodically dropping visitors and I have no idea why. Most of my website's visitors are seeing it fine, but in the last weeks more and more visitors report ...
1
vote
1answer
33 views

Apache redircting when it shouldnt

I have inherited a LAMP server with a lot of customization. I want to enable mod_status in apache to get some monitoring of apache started. Problem is, with mod_status enabled in the httpd.conf, I am ...
1
vote
1answer
50 views

Apache2 and domain name

I have a server running several sites (sites-available/...) which all have a domain name, and are differentiated using their port number(www.xxx.com:8090, www.xxx.com:8091,etc..) I have a domain name ...
0
votes
1answer
318 views

apache2 running but doesnt load my index.html

I have a linux server running apache2, I have my own user folder: /home/me/... I added a .htaccess to my folder with: DirectoryIndex index.html in it and the server IP is: 123.456.789.111 I tried: ...
3
votes
1answer
2k views

Setting file permissions on linux to allow PHP to write to a directory

I have a website built with Codeigniter and hosted on a Linux box. I am trying to follow "best practices" when it comes to my file permission settings, but I'm not sure if I completely understand the ...
0
votes
1answer
157 views

Virtual hosting on CentOS [closed]

I have a CentOS machine running Apache. I have a few virtual hosts set up and they run just fine. An example of a setup that's working fine is: <VirtualHost 10.10.10.38:80> ServerName ...
0
votes
2answers
85 views

How to make mod_rewrite work transparently?

Following is the content of .htaccess file <IfModule mod_rewrite.c> Options +FollowSymLinks Options +Indexes RewriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} ...
0
votes
1answer
221 views

How can I prevent people from looking at a listing of files in parent directory if I haven't uploaded index.html? [duplicate]

Possible Duplicate: How to restrict the download of all files in a folder? I haven't uploaded index.html or index.php to my root directory. How can I prevent people from looking at a ...
0
votes
1answer
100 views

Grep directory name

Need a script to grep within a directory for folders named by emails (so looking for the @) to then search the apache logs to see if the email address grep'ed has accessed the website today. Then ...
0
votes
1answer
94 views

Is there a minimal, pre-built solution for hosting a large collection of files?

My Google-fu has failed me on this one. Every time I search for something like this all I get is a bunch of vulnerability reports. I feel like this should be pretty straightforward, but I'm not having ...
1
vote
1answer
465 views

Directory access control with Apache: do I need to use a specific .htaccess?

I have an Apache webserver, and in the Apache configuration, I have Alias /backups "/backups" <Directory "/backups"> AllowOverride None Options Indexes Order allow,deny Allow ...
2
votes
1answer
793 views

How do I save user uploaded files outside of the web folder but use them on my page?

I have read that one of the best things to do for security with user uploaded files is to store them outside of the web folder, as there is very little you can do to ensure that that jpg image the ...
7
votes
4answers
207 views

Is there an SVN UI for hosting server?

We are considering upgrading to either a dedicated or cloud server. What I would really like is for the hosting account to have SVN installed on it. With a UI that I can use. So when I make a change, ...
9
votes
4answers
213 views

Cheap server stress testing

The IT department of the nonprofit organization I work for recently got a new virtual server running CentOS (with Apache and PHP 5), which is supposed to host our website. During the process of ...