Just run the following command as root to install the server.
# wget http://shortfin.io/install.sh && sh install.sh
What? Are they serious? Is this becoming a thing? Please don't tell me that this is a thing.A fast and static web server for serving web apps
11–20 of 135 posts
Re: A fast and static web server for serving web apps
#12>wget http://shortfin.io/install.sh && sh install.sh Isn't it recommended that any project doing one-line installs use HTTPS?
$ curl http://shortfin.io/install.sh | sh
I definitely agree with the HTTPS. For example this is what meteor proposes: $ curl https://install.meteor.com | shRe: A fast and static web server for serving web apps
#13>wget http://shortfin.io/install.sh && sh install.sh Isn't it recommended that any project doing one-line installs use HTTPS?
Re: A fast and static web server for serving web apps
#14I don't get it. You create a server to solve C10K problem, and then host its own website with nginx? Why? Having HN crowd coming and testing your server would be a great test, no?
> It was created in 2011 by Timothy E. Johansson and is the base for the send-API and the tracking server for AlphaMail.
> It also powers this website (though behind nginx). You can reach it directly on port 88: shortfin.io:88
Re: A fast and static web server for serving web apps
#15Re: A fast and static web server for serving web apps
#16Re: A fast and static web server for serving web apps
#17Re: A fast and static web server for serving web apps
#18Then I thought may be I was being a little bit to picky and unfair, so I checked the code of some random files and... well, it looks like it was part of a learning experience but it definitely needs work before being considered a viable option.
Re: A fast and static web server for serving web apps
#19Just run the following command as root to install the server. # wget http://shortfin.io/install.sh && sh install.sh What? Are they serious? Is this becoming a thing? Please don't tell me that this is a thing.
Then again, most of us blindly run what we assume to be GNU autoconf scripts and never read Makefiles before we 'make install' as root. Nor do most of us read or audit source code, even for security-sensitive applications.
Re: A fast and static web server for serving web apps
#20A webserver for only static pages, i.e. it won't talk to a runtime? But it's "for serving web apps", this means all the dynamic content is pulled from client side JS? Then you would still need programs on the server to answer AJAX requests.
I did not find an explanation on the page or by Googling.