Setting Up A Site In A .local Domain

Jun 10, 2008

I have a web server running Server 2003 and IIS6. I can access everything fine via IP. Now I want to have a domain name work with it.

The server is in a .local domain environment. Does anyone have any info on how I should setup DNS for the web server if the domain itself is not getting any DNS info from the outside?

Is it just a matter of adding new A and NS records or do I need to be in a FQDN domain for it to work?

View 4 Replies


ADVERTISEMENT

Apache :: Setting Up A Local Domain With Working Override

Feb 25, 2014

I'm trying to accomplish two goals: First, get "Pretty Links" to work on my local Wordpress instance; second, to set up a local domain for the site.I have a fresh install of Apache 2.4.6 running, and I'll I've done is enable the rewrite and vhost_alias mods. Nevertheless, here's my apache2.conf: URL....

I need to have AllowOverride set to All. This, I gather, allows .htaccess files within the subsequent directories to alter the apache config. To try one thing at a time, I'm accessing the site from localhost/var/www/dhae/Wordpress (foregoing the domain). I tried altering the 000-default.conf to oblige this: [URL] .... -- all I added was the <Directory> section. This didn't work, and neither did changing the AllowOverride to All in the apache2.conf.

I wondered if perhaps I needed something more specific to the directory, so I tried using my second goal to accomplish this. I wrote the dhae.conf: URL....

I've also added the following line to my HOSTS file:127.0.0.1 dhae.dev

This hasn't worked either. I've tried virtual host config stuff as much as I could find, and I'm just not having any luck. What I have even came from this site (URL....).

View 7 Replies View Related

FC6 Local Network Setting

Oct 4, 2007

From last 2 days I am trying to browse a website locally in FC6 but not getting any sign of success, this site is not live yet.

Website is access through IP but my some application need the website accessing with domain name.

Dns zone file is existed all services are running

What exactly I am missing..

View 2 Replies View Related

Setting Up An SMTP Server On My Local Machine

Aug 19, 2008

I'm trying to set up a SMTP server on my local machine.. can i do this with a windows OS using apcahe?

View 3 Replies View Related

Hard Time In Setting Red5 On My VPS In /usr/local/red Directory

Apr 16, 2009

I really had a hard time in setting red5 on my VPS in /usr/local/red directory, I have done all the installation steps but still the port tester does not show success, I am using centos5 with cpanel installed, i have the installation steps from red5 forum but pretty much unsure what needs to be done after installation

1. I have only iptables installed and even if I remove iptables the port tester does not work properely

View 4 Replies View Related

Apache :: Setting Up Free Dns Service For Local Web Server

Jan 26, 2013

*My computer is a computer of a 500 computers network within our company.

* i have been given a STATIC local intranet ip 192.168.10.168 assigned by our IT department via their router.

* i have the internet facility provided through the above mentioned intranet for which i get a dynamic ip ex: 188.54.208.205, 176.44.107.21

* i have installed WAMP server.

my current project for the company i am doing should be able to access via internet in addition to the local access. local access is the primary access method. so now i have installed a free dns service like dyndns. at the setup of that, i have choosen a free subdomain ex: my.freedns.com they offer. then i assigned the ip ex:188.54.208.205. also installed their desktop client for monitoring ip changes auto updates.

Now the problem is : when i hit my.freedns.com the page displaying is of our internet service provider. not of my project homepage . How can i fix so when i issue above subdomain it will show my webserver default page? 

View 11 Replies View Related

Setting Up New Site

Nov 2, 2007

This may be a severely basic question, but my knowledge of this type of thing is quite limited.

My firm recently purchased a domain name and we have hosting capabilities on our own server. How do I set up the site so that I can publish directly to the domain from MS Visual Web Developer?

The domain is ca-education.com,

View 6 Replies View Related

Setting Default Site In My VPS IP

May 7, 2009

I have a VPS and I am using LXAdmin. What I want to do is that if I type the IP of my VPS in my browser it would show my main Website and not the page of LXAdmin saying that the IP address or domain is not yet setup.

View 1 Replies View Related

How To View Domain On Own Local Network

Mar 11, 2008

I am running my own webserver and up untill now checked my sites on a second broadband connection. Due to an accident i can now only afford the one connection.

My question is, how can i view my sites using domain name or static ip (not local)
I am running windows server 2003

I saw a post mentioning host files but did not quite understand if that is what was deeded, I am assuming that i need to loopback somehow.

My router has no loopback

View 6 Replies View Related

How To Make Sub Domain On Your Local Host

Aug 11, 2007

I added new sub domain name using cpanel on my vps server.

Now I need to create this sub domain on my localhost, so i can test everything before I upload them.

View 0 Replies View Related

Setting Up An Intranet Site Using Wamp

Jul 3, 2008

These are the settings which I've created on the Wamp server that will be access across the network.

In the httpd file, I have Remove the hush from the line second line of after the Virtual hosts

# Virtual hosts
Include conf/extra/httpd-vhosts.conf

To setup the domain, in the httpd-vhosts file, I have create this

<VirtualHost *:80>
ServerName MathewBrown
ServerAlias MathewBrown
DocumentRoot "C:/wamp/www/MathewBrown"
ErrorLog "C:/wamp/www/MathewBrown/logs/error.log"
CustomLog "C:/wamp/www/MathewBrown/logs/access.log common"
<Directory "C:/wamp/www/mathewbrown/">
Options FollowSymLinks
AllowOverride all
Order Allow, Deny
Allow all
</Directory>
</VirtualHost>

<VirtualHost *:80>
ServerName DevServeWeb
DocumentRoot "C:/wamp/www"
ErrorLog "C:/wamp/www/logs/error.log"
CustomLog "C:/wamp/www/logs/access.log common"
<Directory "C:/wamp/www/mathewbrown/">
Options FollowSymLinks
AllowOverride all
Order Allow, Deny
Allow all
</Directory>

</VirtualHost>

In the hosts file, I have added this.

127.0.0.1 localhost
127.0.0.1 MathewBrown
127.0.0.1 DevServeWeb

In my phpmyadmin file, these have been added

<Directory "c:/wamp/apps/phpmyadmin2.11.6/">
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order Allow,Deny
Allow from all
Allow from 127.0.0.1
Allow from 192.168.2.102
</Directory>

<Directory "C:/wamp/www">
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order Allow,Deny
Allow from all
Allow from 127.0.0.1
Allow from 192.168.2.102
</Directory>

<Directory "C:/wamp/www/MathewBrown/">
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order Allow,Deny
Allow from all
Allow from 127.0.0.1
Allow from 192.168.2.102
</Directory>

Computers which will be accessing the server,
their hosts file have been changed to this.

127.0.0.1 localhost
192.168.1.100 MathewBrown
192.168.1.100 DevServeWeb

View 0 Replies View Related

Setting Up Selling E-book Site

Apr 27, 2007

I am selling e-book on howtolearnmath.com

Currently I am using ebookpro.com

If I use PDF, how can I know others won't just download my e-book for free?

View 1 Replies View Related

Assigning Local Groups To Domain Users

Jul 1, 2009

I have a samba server running as a NT domain controller, and a linux client computer that is joined to that domain controller. I login to the linux computer as a domain user, is it possible to assign local groups (e.g. games, floppy, video, etc) to the domain user other than modifying the /etc/group upon successful authentication? Can pam_group do what I need?

View 0 Replies View Related

Sendmail Can Not Send Email To Local Domain

Jun 30, 2007

suppose my domain is mydomain.com, my sendmail may send email to any domain name except local domain, say, sendmail may send email to hotmail, yahoo or any other domain name, but when send email to emailbox under mydomain.com, sendmail log will say domain not found.

My situation is my server does not have DNS service, my DNS service is outsourced, and MX record also is outsourced.

View 7 Replies View Related

Setting Up A Mirror/Mirroring Site With A 2nd Web Host

Aug 10, 2005

I currently have a mirror site set-up on a seperate server (with a seperate web hosting company) for risk management purposes.

For zero downtime dependability, a load balancer cluster checking both servers in real time, and directing traffic at only servers that were online has been suggested.

However this option is rather expensive. Does anyone know of any other options?

View 2 Replies View Related

NameServers ? Setting Them And Next Step To Make My Site Live

Mar 16, 2009

how to buy domains but what is the next step . i heard from my freinds that i we need to setup name servers and some other things before my site goes live,

View 6 Replies View Related

Plesk 11.x / Windows :: Setting Default Site On Dedicated IP - Unable To Reconfigure Web Server

Sep 2, 2014

Code:

Error: Unable to reconfigure web server. websrvmng failed: Site MailEnable WebMail does not exist at IIS7WebSites::get() In IIS7NativeProvider module Exception type: System.Exception at IIS7WebSites.get(IIS7WebSites* , auto_ptr* , Int64 id, basic_string,std::allocator >* idnName)
Windows Server 2012
Plesk 11.0.9 Update #62
Note: Recently migrated from Plesk 9.2

Trying to set Default Site for a Dedicated IP Address.

I go to Subscription, then to domain > Change Hosting Settings, select dedicated IP address and OK, works fine. Site goes to Default Plesk Page.

Go to Tools & Settings, IP Addresses > Select the dedicated IP address I set above. Change Default Site to site above. Click Ok.

I get the error message above and nothing changes.

I looked on my IIS Server and MailEnable's Webmail is installed under the Default Website.

I have another Dedicated IP on this server and it has a default site on it working properly, but it was set up on the old site and it was configured as part of the Migration using Migration Manager.

I tried deleting the IP address and adding it back in. That didn't change anything. I also tried running: "%plesk_bin%websrvmng.exe" –reconfigure-webmail since that came up under someone else's issue when searching the web and that .exe is what's throwing the error.

View 1 Replies View Related

Setting Up Domain Forwarding?

Dec 26, 2005

I've taken a reseller account from ResellerZOOM which came with WHM/cPanel. I've my own private nameservers(meaning I got my own IP). I've a domain that I want to be forwarded to my wordpress.com blog, just like domain registrars offer domain forwarding but the registrar I registered my domain with doesn't give domain forwarding. so I was thinking that maybe I can point the domain to my nameservers & then have it forwarded to my wordpress.com blog. The thing is that I haven't used WHM before & I don't know how to do it, create some DNS zone maybe!!

The only way I know is to create an account for that domain, allot it some diskspace & then redirect via .htaccess file, which would be overkill IMHO. I know it can be done without creating an account, some other way.

View 3 Replies View Related

Setting Up Domain With Lighthttpd

Jun 9, 2009

its been long time since I have set one and its been really bugging with the feather theme interface, which I haven't used before

now, here is the pt.

I have 3 ips , I want the main ip to be unique
i.e assuming .2, .3 and .4 are the the ips we have ben provided with, where .2 is the main ip of the server (lxadmin)

now, in the dns template, I have 6 options where ip has to be assigned, as -
base, cp, mail, ns, ns1, ns2

I have set the base,cp, mail, ips to .3

I don't have a clue on what to set for the ns, ns1, ns2

I want .3 to be shown as the pinged ip when site is pinged.

We have set .3 and .4 as the nameserver ips in the registrar, so do I need to provide .3 as the ns1 ip and .4 as the ns2 ips or both the ips have to be .3
and what should be the ns ip?

View 1 Replies View Related

DNS And Domain- Setting Up DNS With DirectAdmin

Jul 23, 2009

I've got DirectAdmin installed, and my domain name (misacampo.org) hosted with XeoDomains.com.

I'm wondering how I set up my DNS so that whenever I point more domains to my VPS their DNS will be set to ns1.misacampo.com and ns2.misacampo.com.


Would it be as simple as pointing my domain to my VPS IP, then setting up this in DirectAdmin?:

Add Zone
Domain Name:
IP Address:
Name Server 1:
Name Server 2:

Would I enter:
Add Zone
Domain Name: misacampo.org
IP Address: xxx.xxx.xxx.xxx
Name Server 1: ns1.misacampo.org
Name Server 2: ns1.misacampo.org


Then point my domain to xxx.xxx.xxx.xxx, and set it up my domain at XeoDomains.com like so:

Add New Child Name Server
Host Name: ns1.misacampo.org
Ip Address: xxx.xxx.xxx.xxx

and

Add New Child Name Server
Host Name: ns2..misacampo.org
Ip Address: xxx.xxx.xxx.xxx

Would this work? I'm looking to do a quick shift from my old CPS (LXAdmin) to my new VPS (DirectAdmin) with at little downtime as possible. Do I need to set up any other records for the domain for my email accounts to work, or would DirectAdmin take care of all this?

View 1 Replies View Related

Setting Up NameCheap Domain

Jul 31, 2007

I've registered a domain about an hour ago called animeclassicreviews.com

Nothing comes up, all i get is 'under construction' or i get a 404 error if i remove the www, i tried to forward url to my blogspot account but nothings happening.

View 9 Replies View Related

First Time W/o Cpanel - Setting Up A Domain

Jan 18, 2007

Heres what Ive done created a new user and set their home directory as /home/<user>. I then made a public_html folder within their home dir.

Then I went into httpd.conf, and added a virtual host for that domain with the document root to the public_html dir i created .

At this point, what is there left to do? I need to mess with the DNS right? Anything else?

View 2 Replies View Related

Setting Up A Mail System For Your Domain Name

Apr 25, 2009

I have had my domain for about 3 months now, www.mycwd.com.au - It is ran off a VPS and I purchased the Domain.

I was wondering if anyone can help me set up a mailing system so I can receive/send emails.

View 3 Replies View Related

Setting Up A Main Domain And Nameservers

Apr 24, 2009

I have recently just purchased an unmanaged vps from poundhost. I have never used a vps before so we shelled out for a WHM control panel! The issue now is that we do not have a nameserver set up or any main domain to use as a nameserver.

We have the main IP address and two additional IP's given to us by poundhost, how do I use these to start hosting and managing websites?

View 3 Replies View Related

Setting Up New Domain With Hosting Package

Jul 7, 2008

I ordered a domain from Name and a shared hosting package from Hawk Host. How do I set them up so they work together? I thought all I had to do was add the Hawk Host name servers to my Name account but that doesn't seem to be helping. I don't have any webpages up yet but I do have some files uploaded to be used as a redirect for a game server. The redirect isn't loading properly most of the time and when I type my domain name into a browser my directory won't show up either, just the parking page. I ordered both of these last week.

View 5 Replies View Related

Domain Name Server (DNS) Redirection / Setting Up Zone(s)

Oct 24, 2007

I have a quick question about some DNS zones I'm trying to set up for a customer. I figured I would try asking the community before bugging our top-level admins (they have enough to do already, and I'd rather learn this myself).

We have a customer for whom we are managing their DNS. The site is actually hosted elsewhere, but the DNS originates on our server.

They have another site that is hosted with us, and they would like to set up a subdomain redirect from the remotely-hosted site to the site hosted on our hardware. So, the situation looks something like this:

example.com : hosted elsewhere (primary IP not ours), DNS with us
FooSite.example.com : redirect this to www.FooSite.com

I could edit httpd.conf, but it would be easiest (for firewall reasons at the moment) if I could enter in the proper zones via WHM zone editor. I'll be able to see the results either way. I tried setting up the 'A' and 'CNAME' records, and I got as far as directing the 'A' records for the subdomain to the local IP, but I'm not sure how to finish it off (assuming I'm going down the right path). My own knowledge level in this regard is somewhere between novice and intermediate (which is why I have partners and admins ).

View 10 Replies View Related

Setting Up A Domain Name SUSE 10 Runing From Home

Oct 27, 2009

I've got SUSE 10 loaded and installed at home.

My ISP service is highspeed from Comcast (speed right now not an issue), I would like to setup a domain name on the box to play around with - nothing serious yet.

I have several domain names purchased (Wildwest & Enom) and would like to use one of those on this box, or even more domains at a later day.

View 4 Replies View Related

Apache :: Cross Domain / Setting Up HTAccess

Mar 30, 2014

I'm trying to set up a login script on twenty subdomains that will be checked on another subdomain. I've found this example for different domains and figure it should be simple enough to utilise but my ereg is crappy

<IfModule mod_headers.c>SetEnvIf Origin "http(s)?://(www.)?(domain1.com|domain2.com)$" AccessControlAllowOrigin=$0$1Header add Access-Control-Allow-Origin %{AccessControlAllowOrigin}e env=AccessControlAllowOrigin</IfModule>

View 4 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved