Create a WWW-domain
Main settings
- Enter a WWW-domain Name. DetailsThe following string is added into the Nginx configuration file for the WWW-domain:
Nginx configuration file
The following string is added into the Apache configuration file for the WWW-domain:server_name <WWW-domain name>;
Apache configuration file
ServerName <WWW-domain name>
- Aliases — enter the name of the alias(es) that you want to add for this WWW-domain. By default, after you enter a WWW-domain name the alias "www." is set automatically. The A-record is created for the alias. Learn more under Resource records. DetailsThe following string is added into the Nginx configuration file for the WWW-domain:
Nginx configuration file
aliases of the WWW-domain are added:server_name <WWW-domain name>;
Nginx configuration file
The following string is added into the Apache configuration file for the WWW-domain:server_name <WWW-domain name> <WWW-domain aliases>;
Apache configuration file
ServerAlias <WWW-domain aliases>;
- Enter a Root directory of the website. It contains the website files on the server. DetailsThe following strings are added into the Nginx configuration file for the WWW-domain:
Nginx configuration file
The following string is added into the Apache configuration file for the WWW-domain:set $root_path <path to the root directory>; root $root_path;
Apache configuration file
DocumentRoot <path to the root directory>
- Select a content management system (CMS) in the Select a script field. A CMS is used to add different content to a website (articles, photos, pages, etc.). If you don't have a CMS you will need to edit the website source file manually in order to add or edit the content. ISPmanager supports CMS Drupal, Prestashop, WordPress, joomla, phpBB.
- Select a WWW-domain Owner. This is an ISPmanager user. DetailsA directory with the username is created in
/vhosts . The directory contains the Nginx configuration file.conf for the WWW-domain.A directory with the username is created in/conf/vhosts . The directory contains the Apache configuration file - Select an IP-address source:
- allocate automatically — the control panel selects an IP address from the pool in Settings → IP addresses.
- enter manually — you can select an IP address in the IP address field from the list of IPs in Settings→ IP addresses. DetailsThe following string is added into the Nginx configuration file for the WWW-domain:
Nginx configuration file
The following string is added into the Apache configuration file for the WWW-domain:listen <IP address>:<port>;
Apache configuration file
Port 80 is used per default for an insecure connection and port 443 is used for a secure one.<VirtualHost <IP address>:<port>>
- Enter the Administrator email that will be displayed on the web-server and WWWd-domain error pages. DetailsThe following string is added into the Apache configuration file for the WWW-domain:
Apache configuration file
ServerAdmin <Administrator email>
- Select Encoding. It defines a set of characters to represent the content of your website:
- Do not select— use the default value for the database;
- utf-8 — contains any Unicode characters including Latin and Cyrillic ones. We recommend that you use this universal encoding;
DetailsThe following string is added into the Nginx configuration file for the WWW-domain:Nginx configuration file
The following string is added into the Apache configuration file for the WWW-domain:charset <encoding>;
Apache configuration file
AddDefaultCharset <encoding>
NoteTo modify a list of encodings create the /usr/local/mgr5/etc/charset file and enter the required values. - Enter the Index page of the website. This page will open if a user tries to open a website buy its domain name but doesn't specify a certain page. E.g. trying to open www.example.com or www.example.com/test instead of www.example.com/index.php. You can enter several pages separated by spaces in descending order of priority. If the first page doesn't exist, the second one will open, etc. DetailsThe following string is added into the Nginx configuration file for the WWW-domain:
Nginx configuration file
The following string is added into the Apache configuration file for the WWW-domain:index <index pages>;
Apache configuration file
DirectoryIndex <index pages>
- Check the SSI box to execute SSI commands before a page will be shown to users. SSI is a programming language which allows adding the dynamically generated content to a page. DetailsThe following string is added into the Nginx configuration file for the WWW-domain:
Nginx configuration file
The following string is added into the Apache configuration file for the WWW-domain:ssi on;
Apache configuration file
Options +Includes
- Select the Default domain check box. If several websites are associated with a single IP address and a user tries to open the website by its IP, the website marked as a "default domain" will be opened. If this option is not selected for any website, the first domain in the alphabetic order will be opened. DetailsThe following string in the Nginx configuration file for the WWW-domain
Nginx configuration file
will be changed intolisten <IP-address>:<port>;
Apache configuration file
In /conf/vhosts-default/ a symlink to the Apache configuration file for the WWW-domain is created.listen <IP-address>:<port> default;
NoteEnabling the Default domain name will check that the IP address specified for the domain is assigned to the existing default domain. If the domain exists, it won't be a default one any longer. - Select the Auto-subdomain creation method. This function allows creating subdomains automatically without modifying their configuration. Subdomains are added automatically when the subdirectory is created in the website root directory:
- disabled — do not create subdomains;
- separate directory — subdomain files will be created in the subdirectories /var/www/www-root/data/ with the name of the subdomain. E.g. for the subdomain www.test.example.com which root directory is located in /var/www/www-root/data/example.com, the subdomain files must be created in /var/www/www-root/data/test.example.com. DetailsThe following strings are added into the Nginx configuration file for the WWW-domain:
Nginx configuration file
The following string is added into the Apache configuration file for the WWW-domain:set $root_path /var/www/www-root/data/www; set $subdomain <WWW-domain name>; if ($host ~* ^((.*).<WWW-domain name>)$) { set $subdomain $1; } root $root_path/$subdomain;
Apache configuration file
VirtualDocumentRoot /var/www/www-root/data/www/%0
- domain subdirectory — subdomain files will be created in subdirectories of the website root directory. E.g. for the subdomain www.test.example.com which root directory is located in/var/www/www-root/data/example.com, the subdomain files must be created in /var/www/www-root/data/example.com/test. DetailsThe following strings are added into the Nginx configuration file for the WWW-domain:
Nginx configuration file
The following string is added into the Apache configuration file for the WWW-domain:set $root_path /var/www/www-root/data/www/<WWW-domain name>; set $subdomain ""; if ($host ~* ^((.*).<WWW-domain name>)$) { set $subdomain $2; } root $root_path/$subdomain;
Apache configuration file
VirtualDocumentRoot /var/www/www-root/data/www/<WWW-domain name>/%1
NoteSelecting "separate directory" or "domain subdirectory" adds "*." into the Aliases field.
NoteYou can select Auto-subdomains provided that the Default option is disabled for the domain.
Secure connection
Select the checkbox Secure connection (SSL) if you want to use the secure connection through the SSL protocol. You will need to install an SSL certificate on the website.
Nginx configuration file
ssl_certificate "/var/www/httpd-cert/www-root/<WWW-domain name>.crt"; ssl_certificate_key "/var/www/httpd-cert/www-root/<WWW-domain name>.key"; ssl_ciphers EECDH:+AES256:-3DES:RSA+AES:!NULL:!RC4; ssl_prefer_server_ciphers on; ssl_protocols TLSv1 TLSv1.1 TLSv1.2; ssl_dhparam /etc/ssl/certs/dhparam4096.pem listen [<IP address>]:<port> ssl http2;
The second section server is created in the Apache configuration file of the WWW-domain. The section contains the following strings: Apache configuration file
SSLEngine on SSLCertificateFile "/var/www/httpd-cert/www-root/<WWW-domain name>.crt" SSLCertificateKeyFile "/var/www/httpd-cert/www-root/<WWW-domain name>.key" SSLHonorCipherOrder on SSLProtocol +TLSv1 +TLSv1.1 +TLSv1.2 SSLCipherSuite EECDH:+AES256:-3DES:RSA+AES:!NULL:!RC4
Secure connection parameters:
- Select the HSTS option to enable encrypted connection and ensure better security. When HSTS is enabled for a website, browsers automatically change insecure requests to secure ones provided that the browser was connected to the website over a secure connection before. The server returns the response "301 Moved Permanently"; DetailsThe following string is added into the Nginx configuration file for the WWW-domain:
Nginx configuration file
The following strings are added into the Apache configuration file for the WWW-domain:add_header Strict-Transport-Security "max-age=31536000;"
Apache configuration file
<IfModule headers_module> Header always set Strict-Transport-Security "max-age=31536000; preload" </IfModule>
- Check the Redirect HTTP-requests to HTTPS box to change insecure requests to secure ones. The server returns the response "301 Moved Permanently. DetailsThe following string is added into the Nginx configuration file for the WWW-domain:
Nginx configuration file
The following strings are added into the Apache configuration file for the WWW-domain:return 301 https://$host:443$request_uri
Apache configuration file
RewriteEngine on RewriteCond %{HTTPS} off RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L]
- Change the SSL port if needed. It is used to open a secure connection. The default value is "443". DetailsThe port is specified in the Nginx configuration file of the WWW-domain:
Nginx configuration file
and in the Apache configuration file of the WWW-domain:listen [<IP address>]:<port> ssl http2;
Apache configuration file
<VirtualHost <IP address>:<port>>
- Select an SSL certificate that encrypts information transmitted between a user browser and a website.
- New self-signed — a free self-signed SSL certificate that is not trusted by browsers. When you open a website with a self-signed certificate, the browser will display a security alert.
- New Let's Encrypt — a free trusted SSL certificate.
Request proxy
Enable the option Nginx-proxy to redirect requests to user applications (such as phpMyAdmin, phpPGAdmin, Roundcube.).
Enter the following parameters:
- Enter the Nginx proxy IP-address from the list in Cluster settings → IP-addresses.
- To open ISPmanager, enable the option Proxy requests to the control panel, otherwise, the website content will open when trying to access it by its domain name.
Learn more in Nginx-proxy.
DDoS-protection
You can set up a DDoS-protection tool that allows blocking IP addresses that send too many requests. This feature is available only on Nginx. For more information please refer to the article Install a web-server.
To enable the DDoS protection tool, open the WWW-domain edit form and select the Enable DDoS protection checkbox.
- Requests per second — if the limit is exceeded, requests from the IP address will be delayed for 5 minutes;
- Maximum peak attack size — if the limit is exceeded, new requests will be blocked.
Support of dynamic content
PHP-scripts
To enable support of PHP scripts for the website, activate the PHP option:
- PHP — select a PHP mode:
- PHP as an Apache module — the apache mod_php module is used for PHP. One of its advantages is a higher speed capability.
- PHP as CGI — PHP is run as a CGI script (Common Gateway Interface). It starts with each request and terminates after the script is executed.
- PHP as FastCGI — Apache mod_fastcgi is used for PHP.
- FastCGI (Nginx + PHP-FPM) — dynamic content is managed by PHP-FPM.
- Select a PHP (CGI) version for "CGI" and "FastCGI (Apache)".
- Disable the Use open_basedir option for "Apache module" if you want to allow PHP-scripts access all the server directories. With this option enables access to the WWW-domain root directory will be restricted. .
For more information please refer to the article PHP modes.
CGI-scripts
To enable CGI-scripts for the website select the CGI-scripts checkbox and select File extensions for the CGI-scripts.
Nginx configuration file
location / { location ~* ^.+\.(jpg|jpeg|gif|png|svg|js|css|mp3|ogg|mpe?g|avi|zip|gz|bz2?|rar|swf)$ { try_files $uri $uri/ @fallback; } location / { try_files /does_not_exists @fallback; } } location @fallback { proxy_pass http://127.0.0.1:8080; proxy_redirect http://127.0.0.1:8080 /; proxy_set_header Host $host; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header X-Forwarded-Port $server_port; access_log off; }
The following string is added into the Apache configuration file for the WWW-domain: Apache configuration file
ScriptAlias /cgi-bin/ /var/www/<WWW-domain owner>/data/www/<domain name>/cgi-bin/ Options +ExecCGI AddHandler cgi-script <file extensions>
Logs
- Enable the option Access log to collect web-server statistics.
- Enable the log analyzer for the WWW-domain::
- Select an Analyzer. NoteThis feature is available provided that Apache and the modules Awstats or Webalizer are installed. Read more in Web-servers.
- Select a statistics Period.
- Select a Report language.
- Enable the Restrict access to statistics option. Enter a Password and Confirm it. The login is the name of the WWW-domain owner.
- Select an Analyzer.
- Error log — specify whether you want to store WWW-server error logs archives and rotate it.
- Select a Rotation period.
- Store archives — enter the number of log file archives to be stored on the server.
Nginx configuration file
access_log /var/www/httpd-logs/<WWW-domain name>.access.log; error_log /var/www/httpd-logs/<WWW-domain name>.error.log notice;
The following string is added into the Apache configuration file for the WWW-domain: Apache configuration file
CustomLog /var/www/httpd-logs/<WWW-domain name>.access.log combined ErrorLog /var/www/httpd-logs/<WWW-domain name>.error.log
To view the log go to Web-server settings → WWW-logs.
To view the reports go to Domains → WWW-domains → Statistics. Statistics for a WWW-domains is kept in /var/www//data/www//webstat.
Learn more under Website statistics.
Optimization
Website optimization allows improving your website performance. This option is available only for Nginx.
- Enable the Compression check box to compress static content, i.e. the files that are not modified very often: images, sounds, music, video, etc. Normally, such files occupy much space and slow down your website. Enter the Compression level. The maximum value is 9. The minimum — 1. We recommend that you set 5. DetailsThe following strings are added into the Nginx configuration file for the WWW-domain:
Nginx configuration file
Learn more in Enable compression.gzip on; gzip_comp_level <compression level>; gzip_disable "msie6"; gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript application/javascript
- Select the Caching check box to enable website content caching and specify how long the data will stay in cache. If you have caching turned on, slow operations that run when a user opens the website will be saved for a specified period. It allows performing fewer operations and showing the prepared data to users. However, if the cached content has been changed, it will be invisible to your users until the caching period expires. DetailsThe location section of the Nginx configuration file for the WWW-domain
Nginx configuration file
contains the string:location / { location ~* ^.+\.(jpg|jpeg|gif|png|svg|js|css|mp3|ogg|mpe?g|avi|zip|gz|bz2?|rar|swf)$ { try_files $uri $uri/ @fallback; }
Nginx configuration file
Example:expires <caching period>;
Nginx configuration file
location / { location ~* ^.+\.(jpg|jpeg|gif|png|svg|js|css|mp3|ogg|mpe?g|avi|zip|gz|bz2?|rar|swf)$ { expires 2h; try_files $uri $uri/ @fallback; }