Browsing Brazilian Portuguese translation

Don't show this notice anymore
Before translating, be sure to go through Ubuntu Translators instructions and Brazilian Portuguese guidelines.
171180 of 2030 results
171.
For example, when a user requests the page http://www.example.com/this_directory/, he or she will get either the DirectoryIndex page if it exists, a server-generated directory list if it does not and the Indexes option is specified, or a Permission Denied page if neither is true. The server will try to find one of the files listed in the DirectoryIndex directive and will return the first one it finds. If it does not find any of these files and if Options Indexes is set for that directory, the server will generate and return a list, in HTML format, of the subdirectories and files in the directory. The default value, found in <filename>/etc/apache2/apache2.conf</filename> is " index.html index.cgi index.pl index.php index.xhtml". Thus, if Apache2 finds a file in a requested directory matching any of these names, the first will be displayed.
Por exemplo, quando um usuário solicita a página http://www.examplo.com/este_diretório/, ele ou ela vai ver: o DirectoryIndex (DiretórioÍndice) se ele existir; uma lista do diretório gerado pelo servidor caso não exista e as opções de índices estiverem especificadas; ou uma página de Permissão Negada se nenhuma das duas opções forem verdadeiras. O servidor irá tentar encontrar um dos arquivos listados no DirectoryIndex e irá retornar o primeiro que for encontrado. Se ele não encontrar nenhum destes arquivos e se as Opções de Índices estiver ajustadas para aquele diretório, o servidor irá gerar e retornar uma lista, no formato HTML, dos subdiretórios e arquivos no diretório. O valor padrão, encontrado em <filename>/etc/apache2/apache2.conf</filename> é "index.html index.cgi index.pl index.php index.xhtml". Portanto, se o Apache2 encontras um arquivo no diretório solicitado que bate com um destes nomes, o primeiro será mostrado.
Translated and reviewed by Alex Rocha
172.
The <emphasis>ErrorDocument</emphasis> directive allows you to specify a file for Apache to use for specific error events. For example, if a user requests a resource that does not exist, a 404 error will occur, and per Apache2's default configuration, the file <filename>/usr/share/apache2/error/HTTP_NOT_FOUND.html.var </filename> will be displayed. That file is not in the server's DocumentRoot, but there is an Alias directive in <filename>/etc/apache2/apache2.conf</filename> that redirects requests to the /error directory to /usr/share/apache2/error/. To see a list of the default ErrorDocument directives, use this command: <command>grep ErrorDocument /etc/apache2/apache2.conf</command>
A diretiva <emphasis>ErrorDocument</emphasis> permite que você especifique um arquivo para o Apache usar para um evento específico de erro. Por exemplo, se um usuário solicitar um recurso que não existe, um erro 404 ocorrerá, e por padrão de configuração do Apache2, o arquivo <filename>/usr/share/apache2/error/HTTP_NOT_FOUND.html.var </filename> será mostrado. Este arquivo não está na Raiz de Documentos do servidor, mais existe uma diretiva de apelido no <filename>/etc/apache2/apache2.conf</filename> que redireciona as requisições do diretório /error para /usr/share/apache2/error/. Para ver a listagem de directivas padrão de Documentos de Erro, use o comando: <command>grep ErrorDocument /etc/apache2/apache2.conf</command>
Translated and reviewed by Mário Meyer
Located in serverguide/C/web-servers.xml:215(para)
173.
By default, the server writes the transfer log to the file /var/log/apache2/access.log. You can change this on a per-site basis in your virtual host configuration files with the <emphasis>CustomLog</emphasis> directive, or omit it to accept the default, specified in <filename> /etc/apache2/apache2.conf</filename>. You may also specify the file to which errors are logged, via the <emphasis>ErrorLog</emphasis> directive, whose default is <filename>/var/log/apache2/error.log</filename>. These are kept separate from the transfer logs to aid in troubleshooting problems with your Apache2 server. You may also specify the <emphasis>LogLevel</emphasis> (the default value is "warn") and the <emphasis>LogFormat</emphasis> (see <filename> /etc/apache2/apache2.conf</filename> for the default value).
Por padrão, o servidor registra o arquivo de transferências no arquivo /var/log/apache2/access.log. Você pode mudar isto site por site em seu arquivo de configuração de host virtual atravéz da diretriz <emphasis>CustomLog</emphasis>, ou omiti-la para aceitar o padrão, especificado no arquivo <filename> /etc/apache2/apache2.conf</filename>. Você pode também especificar o arquivo onde os erros serão registrados, através da diretriz <emphasis>ErrorLog</emphasis>, que por padrão é <filename>/var/log/apache2/error.log</filename>. Estes são mantidos separados do log de transferência para permitir eliminação de problemas com seu servidor Apache2. Você pode também especificar o <emphasis>LogLevel</emphasis> (o valor padrão é "alertar") e o <emphasis>LogFormat</emphasis> (veja o <filename>/etc/apache2/apache2.conf</filename> para o valor padrão).
Translated and reviewed by Og Maciel
Located in serverguide/C/web-servers.xml:233(para)
174.
Some options are specified on a per-directory basis rather than per-server. Option is one of these directives. A Directory stanza is enclosed in XML-like tags, like so:
Algumas opções são especificadas por diretório em vez de por servidor. Option é uma destas diretivas. A seção Directory é delimitado por marcas semelhantes a marcas XML, tal como:
Translated by Mauricio Volkweis Astiazara
Reviewed by Laudeci Oliveira
175.
&lt;Directory /var/www/mynewsite&gt; ... &lt;/Directory&gt;
&lt;Directory /var/www/mynewsite&gt; ... &lt;/Directory&gt;
Translated and reviewed by Laudeci Oliveira
176.
The Options directive within a Directory stanza accepts one or more of the following values (among others), separated by spaces:
A diretiva Opções dentro da estância Diretório aceita um ou mais dos seguintes valores (entre outros), separados por espaços:
Translated by Leonardo Bernardes
Reviewed by Laudeci Oliveira
Located in serverguide/C/web-servers.xml:259(para)
177.
Most files should not be executed as CGI scripts. This would be very dangerous. CGI scripts should kept in a directory separate from and outside your DocumentRoot, and only this directory should have the ExecCGI option set. This is the default, and the default location for CGI scripts is /usr/lib/cgi-bin.
A maioria dos arquivos não devem ser executados como scripts CGI. Isto pode ser muito perigoso. Scripts CGI devem ser mantidos em diretórios separados fora do DocumentRoot, e somente este diretório deve ter a opção ExecCGI habilitada. Isto é o padrão, e o local padrão para os scripts CGI é /usr/lib/cgi-bin.
Translated and reviewed by Og Maciel
Located in serverguide/C/web-servers.xml:268(para)
178.
<emphasis role="bold">ExecCGI</emphasis> - Allow execution of CGI scripts. CGI scripts are not executed if this option is not chosen. <placeholder-1/>
<emphasis role="bold">ExecCGI</emphasis> - Permite execução de scripts CGI. Scripts CGI não são executados se esta opção não estiver habilitada. <placeholder-1/>
Translated and reviewed by Alex Rocha
Located in serverguide/C/web-servers.xml:389(para)
179.
<emphasis role="bold">Includes</emphasis> - Allow server-side includes. Server-side includes allow an HTML file to <emphasis> include</emphasis> other files. This is not a common option. See <ulink url="http://httpd.apache.org/docs/2.2/howto/ssi.html">the Apache2 SSI Howto</ulink> for more information.
<emphasis role="bold">Includes</emphasis> - Permite includes do lado do servidor. Includes do lado do servidor permite a um arquivo HTML <emphasis>incluir</emphasis> outros arquivos. Isto não é uma opção comum. Veja <ulink url="http://httpd.apache.org/docs/2.2/howto/ssi.html">o tutorial do Apache sobre includes do lado do servidor</ulink> para mais informações.
Translated by Mauricio Volkweis Astiazara
Reviewed by Laudeci Oliveira
180.
<emphasis role="bold">IncludesNOEXEC</emphasis> - Allow server-side includes, but disable the #exec and #include commands in CGI scripts.
<emphasis role="bold">IncludesNOEXEC</emphasis> - Permite server-side includes, mais desabilita uso dos comandos #exec e #include nos scripts CGI
Translated and reviewed by Og Maciel
Located in serverguide/C/web-servers.xml:284(para)
171180 of 2030 results

This translation is managed by Ubuntu Brazilian Portuguese Translators, assigned by Ubuntu Translators.

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

Contributors to this translation: ASF, Alex Rocha, Alexandro Silva, Andersen Pecorone, Anderson Blaine, Andre Noel, André Gondim, André Marra, Antônio Ayres (LedStyle), Arthur Rodrigues, Daniel Neis, Duda Nogueira, Fabio Maximiano, Filipe Rosset, Fábio Nogueira, Joao Lopes, Julio Neto, Kemel Zaidan aka Legendario, Laudeci Oliveira, Leonardo Bergamo, Leonardo Bernardes, Lucas Arruda, Lucien Rocha Lucien, Lucius Curado, Marcelo R. Minholi, Marcelo Subtil Marcal, MarlonChalegre, Mauricio Volkweis Astiazara, Milton Bender Jr., Mário Meyer, Og Maciel, Rafael Proença, Rafael Sachetto, Rafael Sfair, Removed by request, Ricardo Cropalato de Melo, Sebastião Luiz Guerra, Tarciso Amorim, Wanderson Santiago dos Reis, Welington R. Braga, Welliton Sá, Yuri Malheiros, Yves Junqueira, billpessoni, luiz.mineo, programad, rics, victor nascimento de almeida.