ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login

    Second Hostname Not Loading on Apache Virtual Host

    Scheduled Pinned Locked Moved IT Discussion
    web serverubuntuwordpress
    28 Posts 3 Posters 6.0k Views
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • JaredBuschJ
      JaredBusch
      last edited by

      If site 1 is also your default document root, that is why it is working, not because the virtual host is correct.

      1 Reply Last reply Reply Quote 0
      • thanksajdotcomT
        thanksajdotcom
        last edited by

        <VirtualHost *:80>

        That is the first line but the doing it in italics screwed it up.

        JaredBuschJ 1 Reply Last reply Reply Quote 0
        • thanksajdotcomT
          thanksajdotcom
          last edited by

          They each have a different document root. Each is in the appropriate website folder in /var/www

          1 Reply Last reply Reply Quote 0
          • JaredBuschJ
            JaredBusch @thanksajdotcom
            last edited by

            @ajstringham said:

            <VirtualHost *:80>

            That is the first line but the doing it in italics screwed it up.

            I use notepad++ to tab out an entire section i want to paste here then the nobebb detects it as code.

            thanksajdotcomT 1 Reply Last reply Reply Quote 0
            • thanksajdotcomT
              thanksajdotcom @JaredBusch
              last edited by

              @JaredBusch said:

              @ajstringham said:

              <VirtualHost *:80>

              That is the first line but the doing it in italics screwed it up.

              I use notepad++ to tab out an entire section i want to paste here then the nobebb detects it as code.

              Yeah, I didn't realize it did that.

              JaredBuschJ 1 Reply Last reply Reply Quote 0
              • JaredBuschJ
                JaredBusch @thanksajdotcom
                last edited by

                @ajstringham my CentOS6.5 webserver has apache 2.2 ithink and when i setup this Centos7 server it is 2.4. I had to add the directory element to my existing virtual host info that i copy/pasted over to the new server.

                		<Directory />
                			Require all granted
                			Options Indexes FollowSymLinks Includes ExecCGI
                			AllowOverride All
                			Order allow,deny
                			Allow from all
                		</Directory>
                
                thanksajdotcomT 1 Reply Last reply Reply Quote 0
                • thanksajdotcomT
                  thanksajdotcom @JaredBusch
                  last edited by

                  @JaredBusch said:

                  @ajstringham my CentOS6.5 webserver has apache 2.2 ithink and when i setup this Centos7 server it is 2.4. I had to add the directory element to my existing virtual host info that i copy/pasted over to the new server.

                    	<Directory />
                    		Require all granted
                    		Options Indexes FollowSymLinks Includes ExecCGI
                    		AllowOverride All
                    		Order allow,deny
                    		Allow from all
                    	</Directory>
                  

                  It's all one server. Those settings are in a different Apache file than the virtual-hosts file.

                  1 Reply Last reply Reply Quote 0
                  • thanksajdotcomT
                    thanksajdotcom
                    last edited by

                    I have 3 files in my /etc/apache2/sites-enabled folder. 000-default.conf, builtbyart.com.conf, and thanksaj.com.conf. The default one has to be there. However, the actual virtual host is brought online when you run:

                    a2ensite builtbyart.com
                    a2ensite thanskaj.com

                    The site name must correspond to a .conf. So if I'm bringing thanksaj.com online, the file has to be thanksaj.com.conf.

                    1 Reply Last reply Reply Quote 0
                    • thanksajdotcomT
                      thanksajdotcom
                      last edited by

                      What I can't figure out is why ThanksAJ.com DOES work but BuiltByArt.com DOES NOT. They are configured exactly the same.

                      scottalanmillerS 1 Reply Last reply Reply Quote 0
                      • JaredBuschJ
                        JaredBusch
                        last edited by JaredBusch

                        Well I cannot help you as my webserver is a simple standard CentOS box with a clean apache install. All the settings are in /etc/httpd/conf/httpd.conf

                        thanksajdotcomT 1 Reply Last reply Reply Quote 0
                        • thanksajdotcomT
                          thanksajdotcom @JaredBusch
                          last edited by

                          @JaredBusch said:

                          Well I cannot help you as my webserver is a simple standard CentOS box with a clean apache install. All the settings are in /etc/httpd/conf/httpd.conf

                          Yeah, the RPM-based system vs a Debian-based system.

                          JaredBuschJ 1 Reply Last reply Reply Quote 0
                          • JaredBuschJ
                            JaredBusch @thanksajdotcom
                            last edited by

                            @ajstringham does not explain why apache config files are different. one would think that would work the same because it is apache not the OS.

                            thanksajdotcomT 1 Reply Last reply Reply Quote 1
                            • thanksajdotcomT
                              thanksajdotcom
                              last edited by

                              I have even tried redoing Wordpress.

                              EDIT: I just checked and had forgotten to redo Wordpress after deleting the old files...oops. Let's try that again..

                              1 Reply Last reply Reply Quote 0
                              • thanksajdotcomT
                                thanksajdotcom @JaredBusch
                                last edited by

                                @JaredBusch said:

                                @ajstringham does not explain why apache config files are different. one would think that would work the same because it is apache not the OS.

                                True.

                                1 Reply Last reply Reply Quote 0
                                • scottalanmillerS
                                  scottalanmiller @thanksajdotcom
                                  last edited by

                                  @ajstringham said:

                                  What I can't figure out is why ThanksAJ.com DOES work but BuiltByArt.com DOES NOT. They are configured exactly the same.

                                  One is being picked up as the default fall through and the other is not.

                                  1 Reply Last reply Reply Quote 0
                                  • thanksajdotcomT
                                    thanksajdotcom
                                    last edited by

                                    Hmm....

                                    1 Reply Last reply Reply Quote 0
                                    • thanksajdotcomT
                                      thanksajdotcom
                                      last edited by

                                      I checked the 000-default.conf file. It's all generic. Nothing set in there. So that's not it.

                                      1 Reply Last reply Reply Quote 0
                                      • scottalanmillerS
                                        scottalanmiller
                                        last edited by

                                        Ubuntu's non-standard Apache config files don't make this any easier either.

                                        thanksajdotcomT 1 Reply Last reply Reply Quote 0
                                        • thanksajdotcomT
                                          thanksajdotcom @scottalanmiller
                                          last edited by

                                          @scottalanmiller said:

                                          Ubuntu's non-standard Apache config files don't make this any easier either.

                                          I need this up and going by tomorrow! Any help is greatly appreciated!

                                          JaredBuschJ 1 Reply Last reply Reply Quote 0
                                          • JaredBuschJ
                                            JaredBusch @thanksajdotcom
                                            last edited by

                                            @ajstringham I cannot help sorry, I just turned up 4 websites on my CentOS7 server. all working perfectly.

                                            thanksajdotcomT 1 Reply Last reply Reply Quote 0
                                            • 1
                                            • 2
                                            • 1 / 2
                                            • First post
                                              Last post