Posted on December 10, 2008 by pilotoutlook
If you operate a successful site with thousands of pages, take a look at your server and you will be amazed. The level of crap that your server is constantly bombarded with is simply amazing.
There are some friendly bots like Googlebot, Yahoo Slurb, MSN, Cuil etc and then there are all these spammers who send thousands of requests per day for various reasons.
After few months of being at the mercy of spam bots, we recently decided to take action and start blocking them more actively.
For our Apache + Mongrel set up, we did the following -
- Installed APF firewall to make our system more fool proof. See How to setup APF for step by step guide.
- Installed DoS Deflate to throttle any incoming request. For now, we have taken the extreme step and we are blocking pretty much anyone who is sending beyond a reasonable number of requests.
- Configured Apache to block certain request patterns if they are suspicious.
I hope you and your servers have a nice holiday.
Rajat
Filed under: Technical | Tagged: apache, apf, dos deflate, mongrel, security, server | Leave a Comment »
Posted on October 13, 2008 by pilotoutlook
This is to help you setup SMTP email using either sendmail or Godaddy in Ruby on Rails. RoR as usual makes it very easy for us to do that.
- Open ROOT/config/environment.rb file
- For sendmail, add following lines -
ActionMailer::Base.delivery_method = :sendmail
ActionMailer::Base.server_settings = {
:domain => ‘www.example.com’
}
- For Godaddy, add following lines -
ActionMailer::Base.delivery_method = :smtp
ActionMailer::Base.server_settings = {
:address => ’smtpout.secureserver.net’,
:domain => ‘www.example.com’,
:port => 80,
:user_name => ‘johndoe@example.com’,
:password => ‘yourpassword’,
:authentication => :plain
}
- Save and restart your webserver. You are all set.
Remember that you can only send 300 emails per day from Godaddy, so if you need to send more emails, you will have to use sendmail or some other solution.
Regards,
Rajat
Filed under: Technical | Tagged: email setup, godaddy, ruby on rails | Leave a Comment »
Posted on September 29, 2008 by pilotoutlook
A quick news – PilotOutlook blog has been added to Aviation category of Alltop.
Aviation enthusiasts can now get our feed through them and hear about the latest happenings at PilotOutlook and aviation industry.
Thanks for all your support.
Rajat
Filed under: Company | Tagged: airline, alltop, aviation, flying, pilotoutlook | Leave a Comment »
Posted on September 18, 2008 by pilotoutlook
I just realized that I have lost the PIC privileges due to not completing Bi-annual Flight Review. For all pilots that are certified by FAA, they are required to go to any certified instructor and take 1 hour of oral and 1 hour of flight instruction.
Until then, they can’t fly as PIC. If you have taken a flight test for any other FAA certification, you are not required to go for this BFR until next 24 months.
So, all those pilots, who have not gone for their BFR in last 24 months, call your instructor and go flying.
If you don’t have one, you can find local instructors using our flight instructor directory
Thanks,
Rajat Garg
Filed under: Uncategorized | Tagged: airline, aviation, cfi, flight instructor, pilot, pilot training | Leave a Comment »
Posted on September 15, 2008 by pilotoutlook
Posted on May 17, 2008 by pilotoutlook
PilotOutlook.com encountered a week full of technical issues and the site was down for many days large week. This was driven by two changes, which we had done last Friday (5/9/2008).
- Apache installation with Open proxy – We had installed Apache and forgot to close Proxy server. Few spammers got an idea of this and exploited our server, thus bringing it down for almost 3 days. We have fixed these issues but there are still lot of useless requests coming in and eating our bandwidth.
- SSL installation issues – We had further issues with SSL installation (yeah!, there are paid services coming) and that brought the server down for 2 more days on Wed and Thu.
Good news is that we are back up and all user data remained secure during these changes and we now have it under control.
Have fun using PilotOutlook.com!
Regards,
Rajat Garg
Filed under: Company, Technical | Leave a Comment »
Posted on May 2, 2008 by pilotoutlook
Bryan Starbuck from TalentSpring recently organized a usability study for startups in Seattle area. Based on that feedback, one of the first things we tackled is redesign of Airport page. A lot more changes are going to come in the near future.
Changes are -
- Larger Google maps for all of airports
- Tab view to switch between pictures, videos and maps instead of scrolling down.
- Addition of takeoff and landing videos. Check out San Francisco Airport (SFO), Boeing Field Airport (BFI), John F. Kennedy Airport (JFK), Aspen Airport (ASE)
Lot more videos will be added soon …
Thanks,
Rajat
Filed under: Airports | Tagged: airport database, landing and takeoff videos, pilot training | Leave a Comment »
Posted on April 24, 2008 by pilotoutlook
This is my first blog and I felt that it will be appropriate to write up what I expect to do with this blog -
- Open a communication channel with the local startup community as well as folks in the industry
- Talk about PilotOutlook – challenges and achievements.
- Contribute – Given that we are building site in RoR, we will share our key learnings along the way.
With that stated, a little history about PilotOutlook.com. The goal was initially to launch a site where users can find directory of all flying clubs. With that idea in mind, we launched this site in November, 2007. Over last few months, we have added numerous other features like -
- Flying club directory with over 3,500 flying clubs
- Airport DB of 23,000 US airports + an API to access airport database all of it.
- User related features – Log books, ability to join or add a flying club, profile pages, adding pictures, testimonial and scraps etc. We also did a cool mashup of all our users on the home page
. Search mechanism can also be used to find instructors in the region.
- Aircraft DB with over 400,000 aircrafts – users can add their own pictures for each of the aircrafts.
And a lot more is coming …
Stay tuned…
Regards,
Rajat Garg
Filed under: Company | Tagged: aircraft, airport database, flying club, pilotoutlook | Leave a Comment »