Search Results

2
votes

SVN backups..is hotcopy enough or should I worry about full and incremental dumps?

Are you worried about hotcopy or are you worried about backing up only once a week? Hotcopy will produce a safe and complete backup of your repository, even if other processes (your develop …
3
votes

can you put SSL on a IP address or only on a web server’s domain name?

You can easily put an ip address into the CN (common name) of an ssl certificate by the same procedure you would use for an ordinary hostname (ssl certificates contain hostnames, not domain names). …
2
votes

Using mod_rewrite in .htaccess in both website root and a subdirectory

You are missing the following directive in foo/.htaccess: RewriteOptions inherit cf. …
4
votes

Using Apache’s mod_auth across multiple sub-domains for single sign-on?

mod_auth_basic Browsers distinguish areas that require HTTP authentication by a combination of the URL root and the name of the authentication realm. Take for example, two domains …
1
vote

How should timestamps in last output be interpreted on linux?

Use the source, Luke: sprintf(length, "(%d+%02d:%02d)", days, hours, mins); This is from the sysvinit source package on Debian. Hint for those …
1
vote

Receiving email notification from smartd (smartmontools)

Since you know about -M test, you have obviously found the chapter about the -M option in the documentation. In the same chapter you will find: exec PATH …
1
vote

CHMOD and the security for the directories on my server

When users are uploading files to your server through a web form and some PHP script, the disk access on the server happens with the user id the web server is running under (usually nobody, www-dat …