ncyoung.com

You are here: Top->Programming->Web->Server Configuration



redirects in .htaccess

RedirectMatch permanent requestUrlMatchPattern finalDestination

for example:

RedirectMatch permanent aboutme.shtml /cat/10

cygwin sshd setup

Here are my own steps to setting up cygwin and the sshd service for Windows 2000.

Openssh is a great tool, and the cygwin port works like a charm once you have it running. If I had known the info in step 7, installatio0n would have been quite painless.

1. Download cygwin from http://cygwin.com/. Run the setup program and select the packages you want. The simplest thing to do is to get the default packages that are selected for you by the installer, plus "cygrunsrv" from the admin category and "openssh" from the net category. I found installing cygwin to be the easiest part of the process, and if you get stuck there's lot's of great help out there...

2. Edit C:cygwincygwin.bat. Make sure it contains the following setting for the CYGWIN environmental variable:

set CYGWIN=binmode tty ntsec

2. Start a cygwin bash shell. If cygwin installed correctly, you should be able to find it in start->programs->cygwin.

3. Make sure cygrunsrv is installed by typing "cygrunsrv -S sshd". This is the command that will start the sshd server, but that's not installed yet. If you get an error from cygrunsrv like "service does not exist" then you're on the right track. If you get "command cygrunsrv not found"
then go back over your install and make sure you get cygrunsrv.

4. Again from the bash shell, run ssh-host-config. Answer yes to the key generation questions. I found it easier not to use privilege separation. Answer yes to install as a service.

5. Start sshd with "cygrunsrv -S sshd" ("cygrunsrv -E sshd" shuts it down). At this point you should also have "Cygwin sshd" available as a service that you can start and stop from start->control panel->administrative tools->computer management - go to the services and applications->services list.

6. If all that went well, you should be able to ssh to the server("ssh localhost -l loginName"). At this point only user accounts that existed before your cygwin install and had administrator access will work. This and the next step were the biggest gotchas for me in this whole game.

7. To enable a user to log in via ssh: You should know that sshd looks for information in the comments field of /etc/passwd and coordinates it with NT permissions. This was mentioned but not explained in the howtos I read.

Here's how make it work: First, create the NT user and make them part of the administrators group.

Next, use the mkpasswd command to format a special passwd entry for that user. You can look at the output with the command "mkpasswd -l". Then either cut and paste the info you need into your /etc/passwd file, or use the command "mkpasswd -l > /etc/passwd".

This second will overwrite your existing passwd file. No matter what you do, make a copy of /etc/passwd before making any changes.

Create home directories for your users with the following commands:
"mkdir /home/userLogin"
"chown userLogin /home/userLogin"

Sshd only reads /etc/passwd once when it starts, so stop and start the server after you make changes to /etc/passwd.

I take it the mkgroup command does the same thing for /etc/group as mkpasswd does for /etc/passwd; I never needed to use it.


A howto

Another howto

About the NT and cygwin security

apache httpd redirects and re-writes

I need to re-write one set of sub paths one way, another another way, and the rest need to get redirected.

The re-writes are working fine, it's the expression for the redirect that I can't seem to get.

Basically, the rewrites work so that content sometimes gets displayed in what looks to the web browser to be a subdirectory. But people inputting content may put relative paths in that content.

So I want everthing that does not look like a content request to that directory to get redirected.

mime type

URL rewriting in a .htaccess file

You can serve a page like:



http://ncyoung.com/rewriteTest2/test.cgi?this=that



When you want the URL to look like:



http://ncyoung.com/rewriteTest/this/that

by using URl rewriting, and you can do it with a .htaccess file.



Adding a re-write rule to a .htaccess file is easy, just use:



RewriteEngine On

RewriteRule (.*) http://ncyoung.com/rewriteTest2/test.cgi?extra=$1



but this makes the url translate from



http://ncyoung.com/rewriteTest/this/that



into



http://ncyoung.com/rewriteTest2/test.cgi?extra=this/that



which is not exactly what you want.



To get the functionality in the first example, I'm using this horrible regular expression:



(([^/]+)/([^/]+)){0,1}/*(([^/]+)/([^/]+)){0,1}/*(([^/]+)/([^/]+)){0,1}/*



Does anyone know of a better one?