top of page

How to make your files and website accessible to public without uploading it to any servers?

  • Mad Max
  • Sep 24, 2017
  • 1 min read

WHAT YOU NEED?

  • Ngrok

  • Local server (like Wamp)

Ngrok

Ngrok is a multiplatform tunnelling, reverse proxy software that establishes secure tunnels from a public endpoint such as internet to a locally running network service while capturing all traffic for detailed inspection and replay.

WHERE TO GET IT?

WAMP

Acronym for Windows/Apache/MySQL/PHP, Python, (and/or) PERL

The WAMP stack provides developers with the four key elements of a Web server: an operating system, database, Web server and Web scripting software. The combined usage of these programs is called a server stack. In this stack, Microsoft Windows is the operating system (OS), Apache is the Web server, MySQL handles the database components, while PHP , Python, or PERL represents the dynamic scripting languages.

HOW TO USE?

  • Copy the files (website or any other files you need to make public) to www directory of wamp

By default it is C:\wamp\www

now run ngrok as administrator

  • now type in ngrok http 80

Here, 80 is the default port number of wamp server

  • once we run the code window should be like fig 1. It says session status online, this means our site is up online.So our website public address is the link given after Forwarding . In my case it is :

http://5d4af986.ngrok.io

So, anyone can visit our localhost using this url ,when ever our wamp server is running.This means that we can take down our server when our we don’t want it to be up very easily.


 
 
 

Comments


Who's Behind The Blog
Recommanded Reading
Search By Tags
Follow "THIS JUST IN"
  • Facebook Basic Black
  • Twitter Basic Black
  • Black Google+ Icon

ME WORKS WITH

    Like what you read? Please message me with any compliments of what i should improve on.

© 2017 by "MAD MAX". A MAX BLOGGING PLATFORM

bottom of page