Difference between revisions of "Subdomain setup"

From Dreamwidth Notes
Jump to: navigation, search
m (DNS Management: fix 'AAA' typos)
(Configuration)
Line 17: Line 17:
 
{{Note|text=The current default scheme has links to places that are not subdomains.}}
 
{{Note|text=The current default scheme has links to places that are not subdomains.}}
  
To configure your installation for user subdomains, uncomment the bolded lines in <code>etc/config.pl</code>:
+
To configure your installation for user subdomains, uncomment the bolded lines in <code>$LJHOME/etc/config.pl</code>:
  
 
<source lang="perl"># Support URLs of the form http://username.yoursite.com/ ?
 
<source lang="perl"># Support URLs of the form http://username.yoursite.com/ ?

Revision as of 15:48, 10 April 2010

DNS Management

First, you will also have to set up a wildcard subdomain record with your host. If you are hosting your DNS on Linode, here is an example of how to do this.

Go to the DNS Manager section of your account and click on the domain zone your DW install is hosted on. Go to the "A/AAAA Records" section and note the IP address of the hosts:

Linode a records.png

(Note: the above picture already has the wildcard listed in it. Yours won't have that yet, but will when you finish this.) You will want to click on "Add a new A/AAAA Record":

Linode subdomain wildcard.png

Here, you will want to add *.yourdomain.com and the IP address you noted on the last page. Save this form and a wildcard subdomain should be added to your A/AAAA Records section.

Configuration

Note: The current default scheme has links to places that are not subdomains.

To configure your installation for user subdomains, uncomment the bolded lines in $LJHOME/etc/config.pl:

# Support URLs of the form http://username.yoursite.com/ ?
# If so, what's the part after "username." ?
$USER_VHOSTS = 1;
$USER_DOMAIN = $DOMAIN;
 
# If you ONLY want USER_VHOSTS to work and not the typical /users/USER and /community/USER
# then set this option:
$ONLY_USER_VHOSTS = 1;

If you only want certain user classes to have user subdomains, do not set $ONLY_USER_VHOSTS to 1, or journals who do not have this user capability won't work!

You will also have to set a user capability in etc/config.pl called userdomain. If you want all users to have this capability, add it to %CAP_DEF:

%CAP_DEF = ( 
         'maxfriends' => 500,
         'userpics' => 1,
         'checkfriends_interval' => 60, 
         'checkfriends' => 1,
         'styles' => 0,
         'todomax' => 25, 
         'todosec' => 0,
         'friendsviewupdate' => 30, 
         'findsim' => 1,
         'getselfemail' => 0,
         'userdomain' => 1
);

Otherwise, you will have to add 'userdomain' => 1 to one or more of the user classes listed in %CAP.

You also need to add an entry to %SUBDOMAIN_FUNCTIONS (and create this hash if it does not already exist):

%SUBDOMAIN_FUNCTION = ( 
    'community' => 'journal',
);