Reputation: 3850
I am trying to figure out what's the best way to install/manage an Apache Webserver on Windows. I can't access the GUI, the only thing I can access is CYGWIN
over SSH
.
So the Question is how to do this?
WAMP
Installer from the Commandline?CYGWIN
Pakage?Edit: I know about the Apache Docs on Windows, but they are really poor if you ask me.
Thank you in advance for your answers.
Upvotes: 0
Views: 576
Reputation: 104
You could:
Use a precompiled CygWin package, install it this way:
wget rawgit.com/transcode-open/apt-cyg/master/apt-cyg
install apt-cyg /bin
apt-cyg install apache
Compile and install apache on Cygwin yourself, as shown here:
http://httpd.apache.org/docs/2.4/platform/win_compiling.html
Upvotes: 1