How would I broadcast a http website over WiFi?












2















I am trying to braodcast a http website over wifi using my laptop to enable my smartphone to connect to this website just by using wifi connection and a web browser.
The goal is to create my private network so I can brodcast websites containing media that I can access using my smartphone with no configuration or app and of course without any need for an internet connection for both the smartphone and laptop.



Does anyone have an idea?



And Thanks.










share|improve this question



























    2















    I am trying to braodcast a http website over wifi using my laptop to enable my smartphone to connect to this website just by using wifi connection and a web browser.
    The goal is to create my private network so I can brodcast websites containing media that I can access using my smartphone with no configuration or app and of course without any need for an internet connection for both the smartphone and laptop.



    Does anyone have an idea?



    And Thanks.










    share|improve this question

























      2












      2








      2








      I am trying to braodcast a http website over wifi using my laptop to enable my smartphone to connect to this website just by using wifi connection and a web browser.
      The goal is to create my private network so I can brodcast websites containing media that I can access using my smartphone with no configuration or app and of course without any need for an internet connection for both the smartphone and laptop.



      Does anyone have an idea?



      And Thanks.










      share|improve this question














      I am trying to braodcast a http website over wifi using my laptop to enable my smartphone to connect to this website just by using wifi connection and a web browser.
      The goal is to create my private network so I can brodcast websites containing media that I can access using my smartphone with no configuration or app and of course without any need for an internet connection for both the smartphone and laptop.



      Does anyone have an idea?



      And Thanks.







      wireless networking android ios






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 12 '14 at 8:13









      user3351262user3351262

      11112




      11112






















          5 Answers
          5






          active

          oldest

          votes


















          2














          The website is listening on a port, usually 80, on you laptop. Assuming you can connect to "localhost" with a browser (on the laptop) and connect to the website, then all is well.



          Your laptop has an ip address, such as 192.168.0.100 for example. You should be able to use that address instead of localhost on your laptop, and you should also be able to use that same address from any computer on your LAN; ie, http://192.168.0.100, or whatever the actual address is. For other computers that run linux, windows, or OSX, you can enter an alias in the hosts files so you can type a name, instead of the numbers, such as http://laptop.



          If you want to connect from both inside and outside your LAN, you can use a dynamic IP address service that can direct requests to the website.



          You can actually have multiple virtual websites running on the laptop either way. I use dyndns, for which I pay a small amount each year. I can access my server by using something like http://myname.homelinux.net, or many other URLs.






          share|improve this answer































            1














            Have you bound your httpd/apache2 to the correct IP address for your WiFi connection? I know on my computer it defaults to my ethernet card and I must manually bind it to the IP address for my WiFi card.



            Make sure you've added Listen 192.168.X.X:80 to your apache2.conf or httpd.conf file using whatever the IP address for your WiFi card is. Older versions of Apache on Ubuntu will use httpd.conf, newer use apache2.conf which is located in /etc/apache2.



            Check here:
            http://httpd.apache.org/docs/2.2/bind.html



            or here:
            https://help.ubuntu.com/14.04/serverguide/httpd.html
            for more information.



            If you want to do this without being connected to another wireless access point or router, you can probably use hostapd to set a static wireless access point on your WiFi interface, still pointing apache2.conf to that IP address.



            As far as how to "host the page," take a look at your apache2.conf file about a third of the way down you'll see a line that's commented out with #. It should look like #ServerRoot "/etc/apache2" This is how you'll point apache to the folder for the root of the site. You should probably have a look at the second link I posted, it'll give you a better idea of how to set up what you want, and be much more informative than me rewriting what they have posted there. There are many ways to set up a properly working site, depending on what you are planning on serving. Essentially, you could drop your 'index.html' file in the /var/www/html directory, uncomment the line and it will work. But you then need to symlink to the media files you want to serve or move them to the /var/www/html directory in the same manner in which you're referencing them in your html files.



            Once you edit the apache2.conf file, run: sudo apache2ctl graceful from the command line to restart apache with your new settings.






            share|improve this answer

































              0














              I too am wanting to set up a Web Page Server as a stand-alone instance accessed from my WiFi NIC from other users in my area.
              Also intend to give the WiFi instance a specific SSID descriptive name like 'MyBBS', so neighbors can connect to that 'signal' and access my pages and download files through the html-server.



              Not sure if this info is going to DO that, but I am open to any positive comments on what might work better...



              Also want this to be accessable by SmartPhones in the area.



              Thanks






              share|improve this answer








              New contributor




              Bruce Alan is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
              Check out our Code of Conduct.





















              • If you have a new question, please ask it by clicking the Ask Question button. Include a link to this question if it helps provide context. - From Review

                – Mr Shunz
                1 hour ago



















              0














              Sounds like you want something like plex or emby. I don't run either because I've written my own solution, but it doesn't do video.






              share|improve this answer
























              • Welcome to Ask Ubuntu; please edit your answer and provide more details.

                – Codito ergo sum
                5 hours ago



















              -1














              Open a web browser on your phone and navigate to your web page, using your internal ip address. For example "http://ip.of.your.web.server:80". Does that not work ?






              share|improve this answer
























              • is there any configuration needed in the server? And can I do this using ubuntu desktop or do I need ubuntu server?

                – user3351262
                Nov 12 '14 at 8:28













              • This can be done on both desktop or server. I presume you have your web page(s) up and running ? Or are you also asking how to host a web page, not just access it on a private LAN ?

                – hatterman
                Nov 12 '14 at 8:44











              • I have have prepared the web page but it is not hosted yet, If you don't mind would you explain to me how to host a web page and Thanks.

                – user3351262
                Nov 12 '14 at 8:50











              • Im not big on hosting web pages, but I suggest you install apache and configure that to host your site(s). Do a search on here for apache server. Good luck.

                – hatterman
                Nov 13 '14 at 8:15











              Your Answer








              StackExchange.ready(function() {
              var channelOptions = {
              tags: "".split(" "),
              id: "89"
              };
              initTagRenderer("".split(" "), "".split(" "), channelOptions);

              StackExchange.using("externalEditor", function() {
              // Have to fire editor after snippets, if snippets enabled
              if (StackExchange.settings.snippets.snippetsEnabled) {
              StackExchange.using("snippets", function() {
              createEditor();
              });
              }
              else {
              createEditor();
              }
              });

              function createEditor() {
              StackExchange.prepareEditor({
              heartbeatType: 'answer',
              autoActivateHeartbeat: false,
              convertImagesToLinks: true,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: 10,
              bindNavPrevention: true,
              postfix: "",
              imageUploader: {
              brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
              contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
              allowUrls: true
              },
              onDemand: true,
              discardSelector: ".discard-answer"
              ,immediatelyShowMarkdownHelp:true
              });


              }
              });














              draft saved

              draft discarded


















              StackExchange.ready(
              function () {
              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f548653%2fhow-would-i-broadcast-a-http-website-over-wifi%23new-answer', 'question_page');
              }
              );

              Post as a guest















              Required, but never shown

























              5 Answers
              5






              active

              oldest

              votes








              5 Answers
              5






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              2














              The website is listening on a port, usually 80, on you laptop. Assuming you can connect to "localhost" with a browser (on the laptop) and connect to the website, then all is well.



              Your laptop has an ip address, such as 192.168.0.100 for example. You should be able to use that address instead of localhost on your laptop, and you should also be able to use that same address from any computer on your LAN; ie, http://192.168.0.100, or whatever the actual address is. For other computers that run linux, windows, or OSX, you can enter an alias in the hosts files so you can type a name, instead of the numbers, such as http://laptop.



              If you want to connect from both inside and outside your LAN, you can use a dynamic IP address service that can direct requests to the website.



              You can actually have multiple virtual websites running on the laptop either way. I use dyndns, for which I pay a small amount each year. I can access my server by using something like http://myname.homelinux.net, or many other URLs.






              share|improve this answer




























                2














                The website is listening on a port, usually 80, on you laptop. Assuming you can connect to "localhost" with a browser (on the laptop) and connect to the website, then all is well.



                Your laptop has an ip address, such as 192.168.0.100 for example. You should be able to use that address instead of localhost on your laptop, and you should also be able to use that same address from any computer on your LAN; ie, http://192.168.0.100, or whatever the actual address is. For other computers that run linux, windows, or OSX, you can enter an alias in the hosts files so you can type a name, instead of the numbers, such as http://laptop.



                If you want to connect from both inside and outside your LAN, you can use a dynamic IP address service that can direct requests to the website.



                You can actually have multiple virtual websites running on the laptop either way. I use dyndns, for which I pay a small amount each year. I can access my server by using something like http://myname.homelinux.net, or many other URLs.






                share|improve this answer


























                  2












                  2








                  2







                  The website is listening on a port, usually 80, on you laptop. Assuming you can connect to "localhost" with a browser (on the laptop) and connect to the website, then all is well.



                  Your laptop has an ip address, such as 192.168.0.100 for example. You should be able to use that address instead of localhost on your laptop, and you should also be able to use that same address from any computer on your LAN; ie, http://192.168.0.100, or whatever the actual address is. For other computers that run linux, windows, or OSX, you can enter an alias in the hosts files so you can type a name, instead of the numbers, such as http://laptop.



                  If you want to connect from both inside and outside your LAN, you can use a dynamic IP address service that can direct requests to the website.



                  You can actually have multiple virtual websites running on the laptop either way. I use dyndns, for which I pay a small amount each year. I can access my server by using something like http://myname.homelinux.net, or many other URLs.






                  share|improve this answer













                  The website is listening on a port, usually 80, on you laptop. Assuming you can connect to "localhost" with a browser (on the laptop) and connect to the website, then all is well.



                  Your laptop has an ip address, such as 192.168.0.100 for example. You should be able to use that address instead of localhost on your laptop, and you should also be able to use that same address from any computer on your LAN; ie, http://192.168.0.100, or whatever the actual address is. For other computers that run linux, windows, or OSX, you can enter an alias in the hosts files so you can type a name, instead of the numbers, such as http://laptop.



                  If you want to connect from both inside and outside your LAN, you can use a dynamic IP address service that can direct requests to the website.



                  You can actually have multiple virtual websites running on the laptop either way. I use dyndns, for which I pay a small amount each year. I can access my server by using something like http://myname.homelinux.net, or many other URLs.







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Nov 14 '14 at 1:39









                  Marty FriedMarty Fried

                  13.4k53847




                  13.4k53847

























                      1














                      Have you bound your httpd/apache2 to the correct IP address for your WiFi connection? I know on my computer it defaults to my ethernet card and I must manually bind it to the IP address for my WiFi card.



                      Make sure you've added Listen 192.168.X.X:80 to your apache2.conf or httpd.conf file using whatever the IP address for your WiFi card is. Older versions of Apache on Ubuntu will use httpd.conf, newer use apache2.conf which is located in /etc/apache2.



                      Check here:
                      http://httpd.apache.org/docs/2.2/bind.html



                      or here:
                      https://help.ubuntu.com/14.04/serverguide/httpd.html
                      for more information.



                      If you want to do this without being connected to another wireless access point or router, you can probably use hostapd to set a static wireless access point on your WiFi interface, still pointing apache2.conf to that IP address.



                      As far as how to "host the page," take a look at your apache2.conf file about a third of the way down you'll see a line that's commented out with #. It should look like #ServerRoot "/etc/apache2" This is how you'll point apache to the folder for the root of the site. You should probably have a look at the second link I posted, it'll give you a better idea of how to set up what you want, and be much more informative than me rewriting what they have posted there. There are many ways to set up a properly working site, depending on what you are planning on serving. Essentially, you could drop your 'index.html' file in the /var/www/html directory, uncomment the line and it will work. But you then need to symlink to the media files you want to serve or move them to the /var/www/html directory in the same manner in which you're referencing them in your html files.



                      Once you edit the apache2.conf file, run: sudo apache2ctl graceful from the command line to restart apache with your new settings.






                      share|improve this answer






























                        1














                        Have you bound your httpd/apache2 to the correct IP address for your WiFi connection? I know on my computer it defaults to my ethernet card and I must manually bind it to the IP address for my WiFi card.



                        Make sure you've added Listen 192.168.X.X:80 to your apache2.conf or httpd.conf file using whatever the IP address for your WiFi card is. Older versions of Apache on Ubuntu will use httpd.conf, newer use apache2.conf which is located in /etc/apache2.



                        Check here:
                        http://httpd.apache.org/docs/2.2/bind.html



                        or here:
                        https://help.ubuntu.com/14.04/serverguide/httpd.html
                        for more information.



                        If you want to do this without being connected to another wireless access point or router, you can probably use hostapd to set a static wireless access point on your WiFi interface, still pointing apache2.conf to that IP address.



                        As far as how to "host the page," take a look at your apache2.conf file about a third of the way down you'll see a line that's commented out with #. It should look like #ServerRoot "/etc/apache2" This is how you'll point apache to the folder for the root of the site. You should probably have a look at the second link I posted, it'll give you a better idea of how to set up what you want, and be much more informative than me rewriting what they have posted there. There are many ways to set up a properly working site, depending on what you are planning on serving. Essentially, you could drop your 'index.html' file in the /var/www/html directory, uncomment the line and it will work. But you then need to symlink to the media files you want to serve or move them to the /var/www/html directory in the same manner in which you're referencing them in your html files.



                        Once you edit the apache2.conf file, run: sudo apache2ctl graceful from the command line to restart apache with your new settings.






                        share|improve this answer




























                          1












                          1








                          1







                          Have you bound your httpd/apache2 to the correct IP address for your WiFi connection? I know on my computer it defaults to my ethernet card and I must manually bind it to the IP address for my WiFi card.



                          Make sure you've added Listen 192.168.X.X:80 to your apache2.conf or httpd.conf file using whatever the IP address for your WiFi card is. Older versions of Apache on Ubuntu will use httpd.conf, newer use apache2.conf which is located in /etc/apache2.



                          Check here:
                          http://httpd.apache.org/docs/2.2/bind.html



                          or here:
                          https://help.ubuntu.com/14.04/serverguide/httpd.html
                          for more information.



                          If you want to do this without being connected to another wireless access point or router, you can probably use hostapd to set a static wireless access point on your WiFi interface, still pointing apache2.conf to that IP address.



                          As far as how to "host the page," take a look at your apache2.conf file about a third of the way down you'll see a line that's commented out with #. It should look like #ServerRoot "/etc/apache2" This is how you'll point apache to the folder for the root of the site. You should probably have a look at the second link I posted, it'll give you a better idea of how to set up what you want, and be much more informative than me rewriting what they have posted there. There are many ways to set up a properly working site, depending on what you are planning on serving. Essentially, you could drop your 'index.html' file in the /var/www/html directory, uncomment the line and it will work. But you then need to symlink to the media files you want to serve or move them to the /var/www/html directory in the same manner in which you're referencing them in your html files.



                          Once you edit the apache2.conf file, run: sudo apache2ctl graceful from the command line to restart apache with your new settings.






                          share|improve this answer















                          Have you bound your httpd/apache2 to the correct IP address for your WiFi connection? I know on my computer it defaults to my ethernet card and I must manually bind it to the IP address for my WiFi card.



                          Make sure you've added Listen 192.168.X.X:80 to your apache2.conf or httpd.conf file using whatever the IP address for your WiFi card is. Older versions of Apache on Ubuntu will use httpd.conf, newer use apache2.conf which is located in /etc/apache2.



                          Check here:
                          http://httpd.apache.org/docs/2.2/bind.html



                          or here:
                          https://help.ubuntu.com/14.04/serverguide/httpd.html
                          for more information.



                          If you want to do this without being connected to another wireless access point or router, you can probably use hostapd to set a static wireless access point on your WiFi interface, still pointing apache2.conf to that IP address.



                          As far as how to "host the page," take a look at your apache2.conf file about a third of the way down you'll see a line that's commented out with #. It should look like #ServerRoot "/etc/apache2" This is how you'll point apache to the folder for the root of the site. You should probably have a look at the second link I posted, it'll give you a better idea of how to set up what you want, and be much more informative than me rewriting what they have posted there. There are many ways to set up a properly working site, depending on what you are planning on serving. Essentially, you could drop your 'index.html' file in the /var/www/html directory, uncomment the line and it will work. But you then need to symlink to the media files you want to serve or move them to the /var/www/html directory in the same manner in which you're referencing them in your html files.



                          Once you edit the apache2.conf file, run: sudo apache2ctl graceful from the command line to restart apache with your new settings.







                          share|improve this answer














                          share|improve this answer



                          share|improve this answer








                          edited Nov 14 '14 at 2:49

























                          answered Nov 14 '14 at 1:16









                          BenBen

                          266




                          266























                              0














                              I too am wanting to set up a Web Page Server as a stand-alone instance accessed from my WiFi NIC from other users in my area.
                              Also intend to give the WiFi instance a specific SSID descriptive name like 'MyBBS', so neighbors can connect to that 'signal' and access my pages and download files through the html-server.



                              Not sure if this info is going to DO that, but I am open to any positive comments on what might work better...



                              Also want this to be accessable by SmartPhones in the area.



                              Thanks






                              share|improve this answer








                              New contributor




                              Bruce Alan is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                              Check out our Code of Conduct.





















                              • If you have a new question, please ask it by clicking the Ask Question button. Include a link to this question if it helps provide context. - From Review

                                – Mr Shunz
                                1 hour ago
















                              0














                              I too am wanting to set up a Web Page Server as a stand-alone instance accessed from my WiFi NIC from other users in my area.
                              Also intend to give the WiFi instance a specific SSID descriptive name like 'MyBBS', so neighbors can connect to that 'signal' and access my pages and download files through the html-server.



                              Not sure if this info is going to DO that, but I am open to any positive comments on what might work better...



                              Also want this to be accessable by SmartPhones in the area.



                              Thanks






                              share|improve this answer








                              New contributor




                              Bruce Alan is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                              Check out our Code of Conduct.





















                              • If you have a new question, please ask it by clicking the Ask Question button. Include a link to this question if it helps provide context. - From Review

                                – Mr Shunz
                                1 hour ago














                              0












                              0








                              0







                              I too am wanting to set up a Web Page Server as a stand-alone instance accessed from my WiFi NIC from other users in my area.
                              Also intend to give the WiFi instance a specific SSID descriptive name like 'MyBBS', so neighbors can connect to that 'signal' and access my pages and download files through the html-server.



                              Not sure if this info is going to DO that, but I am open to any positive comments on what might work better...



                              Also want this to be accessable by SmartPhones in the area.



                              Thanks






                              share|improve this answer








                              New contributor




                              Bruce Alan is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                              Check out our Code of Conduct.










                              I too am wanting to set up a Web Page Server as a stand-alone instance accessed from my WiFi NIC from other users in my area.
                              Also intend to give the WiFi instance a specific SSID descriptive name like 'MyBBS', so neighbors can connect to that 'signal' and access my pages and download files through the html-server.



                              Not sure if this info is going to DO that, but I am open to any positive comments on what might work better...



                              Also want this to be accessable by SmartPhones in the area.



                              Thanks







                              share|improve this answer








                              New contributor




                              Bruce Alan is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                              Check out our Code of Conduct.









                              share|improve this answer



                              share|improve this answer






                              New contributor




                              Bruce Alan is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                              Check out our Code of Conduct.









                              answered 8 hours ago









                              Bruce AlanBruce Alan

                              1




                              1




                              New contributor




                              Bruce Alan is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                              Check out our Code of Conduct.





                              New contributor





                              Bruce Alan is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                              Check out our Code of Conduct.






                              Bruce Alan is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                              Check out our Code of Conduct.













                              • If you have a new question, please ask it by clicking the Ask Question button. Include a link to this question if it helps provide context. - From Review

                                – Mr Shunz
                                1 hour ago



















                              • If you have a new question, please ask it by clicking the Ask Question button. Include a link to this question if it helps provide context. - From Review

                                – Mr Shunz
                                1 hour ago

















                              If you have a new question, please ask it by clicking the Ask Question button. Include a link to this question if it helps provide context. - From Review

                              – Mr Shunz
                              1 hour ago





                              If you have a new question, please ask it by clicking the Ask Question button. Include a link to this question if it helps provide context. - From Review

                              – Mr Shunz
                              1 hour ago











                              0














                              Sounds like you want something like plex or emby. I don't run either because I've written my own solution, but it doesn't do video.






                              share|improve this answer
























                              • Welcome to Ask Ubuntu; please edit your answer and provide more details.

                                – Codito ergo sum
                                5 hours ago
















                              0














                              Sounds like you want something like plex or emby. I don't run either because I've written my own solution, but it doesn't do video.






                              share|improve this answer
























                              • Welcome to Ask Ubuntu; please edit your answer and provide more details.

                                – Codito ergo sum
                                5 hours ago














                              0












                              0








                              0







                              Sounds like you want something like plex or emby. I don't run either because I've written my own solution, but it doesn't do video.






                              share|improve this answer













                              Sounds like you want something like plex or emby. I don't run either because I've written my own solution, but it doesn't do video.







                              share|improve this answer












                              share|improve this answer



                              share|improve this answer










                              answered 5 hours ago









                              the7ermthe7erm

                              64




                              64













                              • Welcome to Ask Ubuntu; please edit your answer and provide more details.

                                – Codito ergo sum
                                5 hours ago



















                              • Welcome to Ask Ubuntu; please edit your answer and provide more details.

                                – Codito ergo sum
                                5 hours ago

















                              Welcome to Ask Ubuntu; please edit your answer and provide more details.

                              – Codito ergo sum
                              5 hours ago





                              Welcome to Ask Ubuntu; please edit your answer and provide more details.

                              – Codito ergo sum
                              5 hours ago











                              -1














                              Open a web browser on your phone and navigate to your web page, using your internal ip address. For example "http://ip.of.your.web.server:80". Does that not work ?






                              share|improve this answer
























                              • is there any configuration needed in the server? And can I do this using ubuntu desktop or do I need ubuntu server?

                                – user3351262
                                Nov 12 '14 at 8:28













                              • This can be done on both desktop or server. I presume you have your web page(s) up and running ? Or are you also asking how to host a web page, not just access it on a private LAN ?

                                – hatterman
                                Nov 12 '14 at 8:44











                              • I have have prepared the web page but it is not hosted yet, If you don't mind would you explain to me how to host a web page and Thanks.

                                – user3351262
                                Nov 12 '14 at 8:50











                              • Im not big on hosting web pages, but I suggest you install apache and configure that to host your site(s). Do a search on here for apache server. Good luck.

                                – hatterman
                                Nov 13 '14 at 8:15
















                              -1














                              Open a web browser on your phone and navigate to your web page, using your internal ip address. For example "http://ip.of.your.web.server:80". Does that not work ?






                              share|improve this answer
























                              • is there any configuration needed in the server? And can I do this using ubuntu desktop or do I need ubuntu server?

                                – user3351262
                                Nov 12 '14 at 8:28













                              • This can be done on both desktop or server. I presume you have your web page(s) up and running ? Or are you also asking how to host a web page, not just access it on a private LAN ?

                                – hatterman
                                Nov 12 '14 at 8:44











                              • I have have prepared the web page but it is not hosted yet, If you don't mind would you explain to me how to host a web page and Thanks.

                                – user3351262
                                Nov 12 '14 at 8:50











                              • Im not big on hosting web pages, but I suggest you install apache and configure that to host your site(s). Do a search on here for apache server. Good luck.

                                – hatterman
                                Nov 13 '14 at 8:15














                              -1












                              -1








                              -1







                              Open a web browser on your phone and navigate to your web page, using your internal ip address. For example "http://ip.of.your.web.server:80". Does that not work ?






                              share|improve this answer













                              Open a web browser on your phone and navigate to your web page, using your internal ip address. For example "http://ip.of.your.web.server:80". Does that not work ?







                              share|improve this answer












                              share|improve this answer



                              share|improve this answer










                              answered Nov 12 '14 at 8:20









                              hattermanhatterman

                              1,4001025




                              1,4001025













                              • is there any configuration needed in the server? And can I do this using ubuntu desktop or do I need ubuntu server?

                                – user3351262
                                Nov 12 '14 at 8:28













                              • This can be done on both desktop or server. I presume you have your web page(s) up and running ? Or are you also asking how to host a web page, not just access it on a private LAN ?

                                – hatterman
                                Nov 12 '14 at 8:44











                              • I have have prepared the web page but it is not hosted yet, If you don't mind would you explain to me how to host a web page and Thanks.

                                – user3351262
                                Nov 12 '14 at 8:50











                              • Im not big on hosting web pages, but I suggest you install apache and configure that to host your site(s). Do a search on here for apache server. Good luck.

                                – hatterman
                                Nov 13 '14 at 8:15



















                              • is there any configuration needed in the server? And can I do this using ubuntu desktop or do I need ubuntu server?

                                – user3351262
                                Nov 12 '14 at 8:28













                              • This can be done on both desktop or server. I presume you have your web page(s) up and running ? Or are you also asking how to host a web page, not just access it on a private LAN ?

                                – hatterman
                                Nov 12 '14 at 8:44











                              • I have have prepared the web page but it is not hosted yet, If you don't mind would you explain to me how to host a web page and Thanks.

                                – user3351262
                                Nov 12 '14 at 8:50











                              • Im not big on hosting web pages, but I suggest you install apache and configure that to host your site(s). Do a search on here for apache server. Good luck.

                                – hatterman
                                Nov 13 '14 at 8:15

















                              is there any configuration needed in the server? And can I do this using ubuntu desktop or do I need ubuntu server?

                              – user3351262
                              Nov 12 '14 at 8:28







                              is there any configuration needed in the server? And can I do this using ubuntu desktop or do I need ubuntu server?

                              – user3351262
                              Nov 12 '14 at 8:28















                              This can be done on both desktop or server. I presume you have your web page(s) up and running ? Or are you also asking how to host a web page, not just access it on a private LAN ?

                              – hatterman
                              Nov 12 '14 at 8:44





                              This can be done on both desktop or server. I presume you have your web page(s) up and running ? Or are you also asking how to host a web page, not just access it on a private LAN ?

                              – hatterman
                              Nov 12 '14 at 8:44













                              I have have prepared the web page but it is not hosted yet, If you don't mind would you explain to me how to host a web page and Thanks.

                              – user3351262
                              Nov 12 '14 at 8:50





                              I have have prepared the web page but it is not hosted yet, If you don't mind would you explain to me how to host a web page and Thanks.

                              – user3351262
                              Nov 12 '14 at 8:50













                              Im not big on hosting web pages, but I suggest you install apache and configure that to host your site(s). Do a search on here for apache server. Good luck.

                              – hatterman
                              Nov 13 '14 at 8:15





                              Im not big on hosting web pages, but I suggest you install apache and configure that to host your site(s). Do a search on here for apache server. Good luck.

                              – hatterman
                              Nov 13 '14 at 8:15


















                              draft saved

                              draft discarded




















































                              Thanks for contributing an answer to Ask Ubuntu!


                              • Please be sure to answer the question. Provide details and share your research!

                              But avoid



                              • Asking for help, clarification, or responding to other answers.

                              • Making statements based on opinion; back them up with references or personal experience.


                              To learn more, see our tips on writing great answers.




                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function () {
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f548653%2fhow-would-i-broadcast-a-http-website-over-wifi%23new-answer', 'question_page');
                              }
                              );

                              Post as a guest















                              Required, but never shown





















































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown

































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown







                              Popular posts from this blog

                              GameSpot

                              connect to host localhost port 22: Connection refused

                              Getting a Wifi WPA2 wifi connection