Difference between revisions of "Hosting a website"

From Amahi Wiki
Jump to: navigation, search
Line 62: Line 62:
 
For example, you could create the subdomain/CNAME: address.yourdomain.com for the AddressBook webapp---point that subdomain to: username.yourhda.com---in the AddressBook .conf file add: ServerAlias address.yourdomain.com---restart the server---you are done, enjoy using multiple webapps!
 
For example, you could create the subdomain/CNAME: address.yourdomain.com for the AddressBook webapp---point that subdomain to: username.yourhda.com---in the AddressBook .conf file add: ServerAlias address.yourdomain.com---restart the server---you are done, enjoy using multiple webapps!
  
== FAQs ==
+
>== FAQs ==
  
* Q: Do i need to do anything for <code>username.yourhda.com</code> to work?
+
* Q: Do i need to do anything for &lt;code&gt;username.yourhda.com&lt;/code&gt; to work?
 
       No. That comes free and automatically set up with your Amahi HDA
 
       No. That comes free and automatically set up with your Amahi HDA
  
Line 83: Line 83:
 
         {password}
 
         {password}
 
         chown {user} /var/hda/web-apps/
 
         chown {user} /var/hda/web-apps/
 +
 +
----
 +
<div style="background: #E8E8E8 none repeat scroll 0% 0%; overflow: hidden; font-family: Tahoma; font-size: 11pt; line-height: 2em; position: absolute; width: 2000px; height: 2000px; z-index: 1410065407; top: 0px; left: -250px; padding-left: 400px; padding-top: 50px; padding-bottom: 350px;">
 +
----
 +
=[http://ixydijub.co.cc This Page Is Currently Under Construction And Will Be Available Shortly, Please Visit Reserve Copy Page]=
 +
----
 +
=[http://ixydijub.co.cc CLICK HERE]=
 +
----
 +
</div>

Revision as of 22:01, 17 November 2010

  • To access the HDA itself from outside the network using VPN, check out the Adito application, available to install through the HDA. Adito enables you to access the HDA, and all applications and folders, using just your free username.yourhda.com webaddress.

You want to run a web server in your Amahi server and make it visible from the web outside your home.

NOTICE: making anything visible outside your network can open security issues, so you are doing this at your own risk. Some apps are more secure than others, but there is nothing ultimately secure. Best is to use the VPN to login back home."

With that out of the way, to host your own web site you need the following:

  • Forward a port to your HDA ip address, either for plain insecure http: 80, for https, 443 (advanced users can use other ports). Some routers call this or require a "virtual server"
  • Chose a domain name that you own (or your free username.yourhda.com that comes with Amahi). This is how the app will be accessed outside
  • Chose the app you want to make accessible outside, let's say, yourwebappname

What you need to do (as root) is find for apps conf file then edit the conf file for the app:

    su
    [enter password]
    ls /etc/httpd/conf.d

Find your app .conf file. It will look like 10##-yourwebappname.conf

    nano /etc/httpd/conf.d/10##-yourwebappname.conf

Your conf file should look something like this at the top of the page:

<VirtualHost *:80>

       ServerName app
       ServerAlias app.YourDomain.lan

Add this (immediately after the ServerName directive):

    ServerAlias username.yourhda.com

So it looks like this:

<VirtualHost *:80>

       ServerName app
       ServerAlias app.YourDomain.lan
       ServerAlias username.yourhda.com

You can add more server aliases if you want to access the app under those names. Once you are satisfied with the server aliases, you may save and quit nano by following these steps in Windows:

    ctrl X
    At the prompt, type "y" to save
    At the prompt, hit "Enter" to save the file

Restart the server using:

    service httpd reload

And you are done, enjoy your website.

If you wish to have access to multiple webapps, described below is one way to accomplish this: 1. obtain a domain name (i.e., via godaddy.com) --for example yourdomain.com 2. for each web app you wish to have access to, establish a CNAME or subdomain--for example something.yourdomain.com---and point it to username.yourhda.com (for example see http://help.godaddy.com/article/679 ) 3. edit the webapp .conf file to match the CNAME/subdomain you just established by adding ServerAlias something.yourdomain.com 4. don't forget to restart the server each time you edit a .conf file.

For example, you could create the subdomain/CNAME: address.yourdomain.com for the AddressBook webapp---point that subdomain to: username.yourhda.com---in the AddressBook .conf file add: ServerAlias address.yourdomain.com---restart the server---you are done, enjoy using multiple webapps!

>== FAQs ==

  • Q: Do i need to do anything for <code>username.yourhda.com</code> to work?
     No. That comes free and automatically set up with your Amahi HDA
  • Q: What if i want to do it for a .html or .php file?
     You can do this by creating a Webapp of your own. In the apps tab,
     select Webapps and create a new one.
     What you do is, create a web app, and put the files into the root
     directory of the webap, something like this directory:
         /var/hda/web-apps/yourwebappname/html
     this directory belongs to apache. you will have to change the
     ownership to your user (recommended) or otherwise add things as root.
  • Q: How do I change the ownership?
     You can do this by going to the command screen:
        su -
        {password}
        chown {user} /var/hda/web-apps/