Home PC Games Linux Windows Database Network Programming Server Mobile  
           
  Home \ Server \ Ubuntu Apache virtual host configuration     - Integrated security administrator Linux accident management (Linux)

- Basic Tutorial: Linux novice should know 26 commands (Linux)

- Get basic information about Linux server script (Server)

- Linux package management operations Basic entry (Linux)

- Oracle Data Guard LOG_ARCHIVE_DEST_n optional attribute parameters (Database)

- FFmpeg compiled with only H264 decoding library (Programming)

- Linux System Getting Started Tutorial: Installing Git on Linux (Linux)

- Ubuntu 10.04 to Ubuntu 10.10 Upgrade (Linux)

- Linux to achieve a simple cp command (Linux)

- Linux System Getting Started Learning: Disable Ubuntu Apport internal error reporting procedures (Linux)

- Create several practical points of high security PHP site (Linux)

- Ubuntu 15.04 installed Nvidia Quadro series graphics driver (Linux)

- SME Linux network security policy server security (Linux)

- Varnish configuration language VCL and its built-in variables (Server)

- Intel Graphics Installer 1.0.3 released, support for Ubuntu (Linux)

- shell-like program (Programming)

- Android Custom View password box example (Programming)

- Partition and file system under Linux (Linux)

- CentOS minimal network is unavailable resolved (Linux)

- Linux environment variable settings methods and differences (Linux)

 
         
  Ubuntu Apache virtual host configuration
     
  Add Date : 2018-11-21      
         
         
         
  Different from Windows, Apache, the configuration file is usually only one, is httpd.conf.

Native environment via apt-get install xxx

Linux, Apache configuration file is /etc/apache2/apache2.conf,Apache at startup automatically reads the configuration information in this file. Some other configuration files such as httpd.conf, etc., it is by Include instructions included.

There apache2.conf in sites-enabled directory in / etc / apache2 next there is a sites-available directory, in fact, there is the real profile, and sites- enabled directory is stored here are just some points to file symbolic links, you can use ls / etc / apache2 / sites-enabled / to confirm it.

So, if the apache is configured with multiple virtual hosts, each virtual host configuration files are placed in the sites-available, then the virtual host to disable, enable very convenient: When building sites-enabled at a point link to a virtual host configuration file, to enable it; if you want to shut down a virtual host, simply delete the link, there is no need to change the configuration file.

1. sudo cp /etc/apache2/sites-avaliable/000-default.conf, named test.conf

2. Modify the configuration file: test.conf

< VirtualHost *: 80 >

# The ServerName directive sets the request scheme, hostname and port that

# The server uses to identify itself. This is used when creating

# Redirection URLs. In the context of virtual hosts, the ServerName

# Specifies what hostname must appear in the request's Host: header to

# Match this virtual host. For the default virtual host (this file) this

# Value is not decisive as it is used as a last resort host regardless.

# However, you must set it for any further virtual host explicitly.

ServerName www.test.com

ServerAdmin webmaster @ localhost

DocumentRoot / var / www / html / test /

ErrorLog /var/www/html/test/error.log

CustomLog /var/www/html/test/access.log combined

< Directory "/ var / www / html / test" >

    Options FollowSymLinks

    DirectoryIndex index.php index.html index.htm

    AllowOverride All # Note that the configuration of the place, it will affect the local directory to enable .htaccess

    Order deny, allow

    Allow from All

< / Directory >

# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,

# Error, crit, alert, emerg.

# It is also possible to configure the loglevel for particular

# Modules, e.g.

#LogLevel Info ssl: warn

# For most configuration files from conf-available /, which are

# Enabled or disabled at a global level, it is possible to

# Include a line for only one particular virtual host. For example the

# Following line enables the CGI configuration for this host only

# After it has been globally disabled with "a2disconf".

#Include Conf-available / serve-cgi-bin.conf

< / VirtualHost >



3. Establish links file:

sudo ln -s /etc/apache2/sites-available/test.conf /etc/apache2/sites-enabled/test.conf

Or: sudo a2ensite test.conf

4. Restart the apache server

sudo /etc/init.d/apache2 restart

5. Modify the hosts (/ etc / hosts)

Add 127.0.0.1 www.test.com

Here you can substantially normal to visit!

PS: If there is also the need for directory level URL rewriting support, continue down:

1. Run the terminal

sudo a2enmod

The program prompts for the name of the active module, enter: rewrite

Success will be prompted to rewrite already load

 2. Modify /etc/apache2/sites-enabled/test.conf (the link points to the site configuration file)
Under the AllowOverride property to All, save. (We have already configured for All)

 3. reload apache

sudo /etc/init.d/apache2 restart
     
         
         
         
  More:      
 
- Analysis of C ++ exception mechanism (Programming)
- Installation Elementary OS Freya 20 things to do (Linux)
- How to use Xmanager Remote Desktop and VNC Log (Linux)
- After reloading the cinder-volume OpenStack not start properly (Server)
- Oracle Character Set Summary (Database)
- Android Studio installed in Ubuntu 15.04 (Linux)
- To create a Linux server network security (Linux)
- Nginx logging client ip (Server)
- To install the latest version of the EPEL on CentOS 5.x or 6.x (Linux)
- Linux, how to filter, split, and merge pcap file (Linux)
- X security settings in Ubuntu (Linux)
- expdp / impdp use version parameter data migration across versions (Database)
- Struts2 Result Types (Programming)
- Linux productivity tools and tips (Linux)
- How common Linux automation tasks (Server)
- Use read command to read user input (Programming)
- HTTPS and SSH and use the difference between the way: Git User's Manual (Linux)
- Linux system performance and usage activity monitoring tools -Sysstat (Linux)
- Python interview must look at 15 questions (Programming)
- Install NetBeans IDE 8.0 on Ubuntu, Linux Mint, Elementary OS, and Debian (Linux)
     
           
     
  CopyRight 2002-2022 newfreesoft.com, All Rights Reserved.