Browsing Russian translation

Don't show this notice anymore
Before translating, be sure to go through Ubuntu Translators instructions and Russian guidelines.
304313 of 3379 results
304.
If you wish to configure a new virtual host or site, copy that file into the same directory with a name you choose. For example:
Если вы хотите настроить новый виртуальный хост или сайт, скопируйте тот файл в туже папку с выбранным вами именем. Для примера:
Translated by Vetal
Reviewed by Sergey Sedov
Located in serverguide/C/web-servers.xml:171(para)
305.
sudo cp /etc/apache2/sites-available/default /etc/apache2/sites-available/mynewsite
sudo cp /etc/apache2/sites-available/default /etc/apache2/sites-available/mynewsite
Translated by Igor Proskurin
Reviewed by Sergey Sedov
Located in serverguide/C/web-servers.xml:177(command)
306.
Edit the new file to configure the new site using some of the directives described below.
Отредактируйте новый файл, чтобы настроить новый сайт, используя некоторые директивы, описанные ниже.
Translated by Igor Proskurin
Reviewed by Sergey Sedov
Located in serverguide/C/web-servers.xml:180(para)
307.
The <emphasis>ServerAdmin</emphasis> directive specifies the email address to be advertised for the server's administrator. The default value is webmaster@localhost. This should be changed to an email address that is delivered to you (if you are the server's administrator). If your website has a problem, Apache2 will display an error message containing this email address to report the problem to. Find this directive in your site's configuration file in /etc/apache2/sites-available.
Директива <emphasis>ServerAdmin</emphasis> определяет почтовый адрес администратора сервера, который будет отображаться пользователям. Значение по умолчанию - webmaster@localhost. Данная переменная должна быть изменена на доступный для вас почтовый адрес (если вы - администратор сервера). Если на вашем сайте возникнут проблемы, Apache2 отобразит ошибку, в которой так же будет отображен указанный почтовый адрес с целью сообщения проблемы. Вы можете найти эту директиву в вашем файле конфигурации сайтов, в каталоге /etc/apache2/sites-available.
Translated and reviewed by Alexey 'keir' Dunaev
Located in serverguide/C/web-servers.xml:187(para)
308.
The <emphasis>Listen</emphasis> directive specifies the port, and optionally the IP address, Apache2 should listen on. If the IP address is not specified, Apache2 will listen on all IP addresses assigned to the machine it runs on. The default value for the Listen directive is 80. Change this to 127.0.0.1:80 to cause Apache2 to listen only on your loopback interface so that it will not be available to the Internet, to (for example) 81 to change the port that it listens on, or leave it as is for normal operation. This directive can be found and changed in its own file, <filename>/etc/apache2/ports.conf</filename>
Директива <emphasis>Listen</emphasis> определяет порт и, при указании, IP адрес, на котором должен работать Apache2. Если IP адрес не указан, Apache2 работает на всех IP адресах, которые доступны компьютеру, на котором он запущен. Значение директивы по умолчанию - порт 80. Вы можете изменить значение на 127.0.0.1:80 чтобы Apache2 работал только на локальном интерфейсе и не был доступен из вне. Так же можно указать, например, значение 81 для изменения порта сервера или оставить все как есть для работы по умолчанию. Данная директива может быть найдена и изменена в ее собственном файле <filename>/etc/apache2/ports.conf</filename>
Translated and reviewed by Alexey 'keir' Dunaev
Located in serverguide/C/web-servers.xml:198(para)
309.
The <emphasis>ServerName</emphasis> directive is optional and specifies what FQDN your site should answer to. The default virtual host has no ServerName directive specified, so it will respond to all requests that do not match a ServerName directive in another virtual host. If you have just acquired the domain name ubunturocks.com and wish to host it on your Ubuntu server, the value of the ServerName directive in your virtual host configuration file should be ubunturocks.com. Add this directive to the new virtual host file you created earlier (<filename>/etc/apache2/sites-available/mynewsite</filename>).
Директива <emphasis>ServerName</emphasis> является необязательной и определяет на какие FQDN должен отвечать ваш сайт. По умолчанию виртуальный хост не имеет установленной директивы ServerName, поэтому он будет отвечать на все запросы, которые не совпадают с директивой ServerName на другом виртуальном хосте. Если вы только что приобрели доменное имя ubunturocks.com и хотите разместить его на своём Ubuntu-сервере, то значение директивы ServerName в конфигурационном файле вашего виртуального хоста должно быть ubunturocks.com. Добавьте эту директиву к новому файлу виртуального хоста, который вы создали ранее (<filename>/etc/apache2/sites-available/mynewsite</filename>).
Translated by Igor Proskurin
Reviewed by Sergey Sedov
Located in serverguide/C/web-servers.xml:211(para)
310.
You may also want your site to respond to www.ubunturocks.com, since many users will assume the www prefix is appropriate. Use the <emphasis>ServerAlias</emphasis> directive for this. You may also use wildcards in the ServerAlias directive.
Возможно вы захотите, чтобы ваш сайт отвечал на www.ubunturocks.com, поскольку многие пользователи сочтут подходящим использовать префикс www. Для этого используйте директиву <emphasis>ServerAlias</emphasis>. В директиве ServerAlias вы также можете использовать метасимволы.
Translated by Igor Proskurin
Reviewed by Valentina Mukhamedzhanova
Located in serverguide/C/web-servers.xml:223(para)
311.
For example, the following configuration will cause your site to respond to any domain request ending in <emphasis>.ubunturocks.com</emphasis>.
Например, следующая конфигурация заставит ваш сайт отвечать на любой запрос домена, оканчивающийся на <emphasis>.ubunturocks.com</emphasis>.
Translated by Igor Proskurin
Reviewed by Sergey Sedov
Located in serverguide/C/web-servers.xml:230(para)
312.

ServerAlias *.ubunturocks.com
There are line breaks here. Each one represents a line break. Start a new line in the equivalent position in the translation.

ServerAlias *.ubunturocks.com
Translated by Igor Proskurin
Reviewed by Sergey Sedov
Located in serverguide/C/web-servers.xml:236(programlisting)
313.
The <emphasis>DocumentRoot</emphasis> directive specifies where Apache should look for the files that make up the site. The default value is /var/www. No site is configured there, but if you uncomment the <emphasis>RedirectMatch</emphasis> directive in <filename>/etc/apache2/apache2.conf</filename> requests will be redirected to /var/www/apache2-default where the default Apache2 site awaits. Change this value in your site's virtual host file, and remember to create that directory if necessary!
Директива <emphasis>DocumentRoot</emphasis> определяет, где Apache должен искать файлы сайта. Значение по умолчанию /var/www. По этому пути сайта нету, но если вы раскомментируете директиву <emphasis>RedirectMatch</emphasis> в файле <filename>/etc/apache2/apache2.conf</filename>, запросы будут перенаправлены по адресу /var/www/apache2-default, где расположен сайт Apache2 по умолчанию. Измените значение этой директивы в вашем файле конфигурации виртуального хоста и не забудьте создать каталог, если он еще не создан.
Translated and reviewed by Alexey 'keir' Dunaev
304313 of 3379 results

This translation is managed by Russian Ubuntu Translators, assigned by Ubuntu Translators.

You are not logged in. Please log in to work on translations.

Contributors to this translation: #pragma, Alex Mr.Brightside Demurine, Alex Nikolaenko, Alexander Chumanov, Alexander Geroimenko, Alexander Ilyashov, Alexander Nasonkin, Alexander Salamatnikov, Alexander Telenga, Alexey 'keir' Dunaev, Alexey Balmashnov, Andrew Diakin, Andrew Krivosheev, Andrey Bachmaga, Andrey G. Loukashin, AngorSTV, Arsen Kamensky, Artem Popov, Artem Yakimenko, DarknetAlpha, Dennis Prochko, Disa, Dmitriy Goroshko, Dmitry Drozdovich, Dmitry Tumaikin, Eugene Fedin, Evgeny, Gofer, IC Raibow, Igor Proskurin, Igor Zakharov, Igor Zubarev, Ivan Kliouchenkov, Kris, Leo, Leonid Selivanov, LexxNewton, Matthew East, Maxim Rogachev, Mihail Kravsun, Mikhail Kashkin, Mikhail Pitertsev, Nash, Nick Gorbunov, Nikolay Saptsin, Oleg Koptev, Pavel Shylenok, Petr E. Antonov, RBasil, Rockstar, Roman Dronov, S@nderS, Sergey A.Stukalov, Sergey Kirienko, Sergey M. Nenashev, Sergey Rebko, Sergey Sedov, Sergey Tuchkin, Somebody32, Someone, Urs, Ushakov Maksym, Vadim Glyshkov, Valentina Mukhamedzhanova, Vasily Kulikov, Vetal, Victor Adrianovskiy, Viktor Kazakov, Vladimir Ovcharuk, Vyacheslav Rodionov, Yadovit, andrey i. mavlyanov, boa, ehpc, ekn, evilzipik, h1z, kolen, nailll, qxov, redirect2006, roland, roma333, takedown, v0v04ka, vasilisc, vic-quakesrc, xXLiAXx, Александр AldeX Крылов.