#1
sanek204
-
- Пользователь
-
- 26 сообщений
Новичок
Отправлено 30 Сентябрь 2016 — 20:29
This is the default welcome page used to test the correct operation of the Apache2 server after installation on Ubuntu systems. It is based on the equivalent page on Debian, from which the Ubuntu Apache packaging is derived. If you can read this page, it means that the Apache HTTP server installed at this site is working properly. You should replace this file (located at /var/www/html/index.html) before continuing to operate your HTTP server.
If you are a normal user of this web site and don’t know what this page is about, this probably means that the site is currently unavailable due to maintenance. If the problem persists, please contact the site’s administrator.
Configuration Overview
Ubuntu’s Apache2 default configuration is different from the upstream default configuration, and split into several files optimized for interaction with Ubuntu tools. The configuration system is fully documented in /usr/share/doc/apache2/README.Debian.gz. Refer to this for the full documentation. Documentation for the web server itself can be found by accessing the manual if the apache2-doc package was installed on this server.
The configuration layout for an Apache2 web server installation on Ubuntu systems is as follows:
/etc/apache2/ |-- apache2.conf | `-- ports.conf |-- mods-enabled | |-- *.load | `-- *.conf |-- conf-enabled | `-- *.conf |-- sites-enabled | `-- *.conf
- apache2.conf is the main configuration file. It puts the pieces together by including all remaining configuration files when starting up the web server.
- ports.conf is always included from the main configuration file. It is used to determine the listening ports for incoming connections, and this file can be customized anytime.
- Configuration files in the mods-enabled/, conf-enabled/ and sites-enabled/ directories contain particular configuration snippets which manage modules, global configuration fragments, or virtual host configurations, respectively.
- They are activated by symlinking available configuration files from their respective *-available/ counterparts. These should be managed by using our helpers a2enmod, a2dismod, a2ensite, a2dissite, and a2enconf, a2disconf . See their respective man pages for detailed information.
- The binary is called apache2. Due to the use of environment variables, in the default configuration, apache2 needs to be started/stopped with /etc/init.d/apache2 or apache2ctl. Calling /usr/bin/apache2 directly will not work with the default configuration.
Document Roots
By default, Ubuntu does not allow access through the web browser to any file apart of those located in /var/www, public_html directories (when enabled) and /usr/share (for web applications). If your site is using a web document root located elsewhere (such as in /srv) you may need to whitelist your document root directory in /etc/apache2/apache2.conf.
The default Ubuntu document root is /var/www/html. You can make your own virtual hosts under /var/www. This is different to previous releases which provides better security out of the box.
Reporting Problems
Please use the ubuntu-bug tool to report bugs in the Apache2 package with Ubuntu. However, check existing bug reports before reporting a new bug.
Please report bugs specific to modules (such as PHP and others) to respective packages, not to the web server itself.
Вылезла вот это понял одно что не ошибка.
Как это исправить что бы зароботало
- Наверх
#2
ykpon
Отправлено 30 Сентябрь 2016 — 20:36
Вообще-то, это стандартное приветственное окно веб-сервера Apache, которое появляется при попытке обратиться к нему по default’ному виртуальному хосту.
- Наверх
У меня есть компьютер Ubuntu 14.10, который используется для тестирования локального веб-сайта, он не обслуживает Интернет. На нем у меня настроено семь сайтов. Однако, когда я получаю доступ к двум из семи, я получаю Apache2 Ubuntu Default Page
вместо своей собственной индексной страницы.
Насколько я могу судить, я настроил все семь, используя один и тот же процесс, поэтому я не знаю, чего не хватает этим двум. Кроме того, в моем каталоге журналов Apache у меня есть два файла журнала, error
и access
для каждого из двух сайтов с неправильным поведением, но все они пусты. Когда я перезапускаю сервис apache2
, ошибок нет. Я пересматривал свои шаги несколько раз, и я не вижу никакой разницы между рабочими сайтами и неработающими сайтами.
Какие варианты у меня есть для диагностики этой проблемы? Могу ли я как-то заставить больше подробных журналов ошибок? Есть ли где-нибудь еще журнал, на который я могу сослаться?
Вот пример файла .conf
для одного из неисправных сайтов:
<VirtualHost *:80>
ServerName www.local_example.com
ServerAlias local_example.com
ServerAdmin address@example.com
DocumentRoot /var/www/Websites/example.com
<Directory /var/www/Websites/example.com/>
Options Indexes FollowSymLinks MultiViews
# pcw AllowOverride None
AllowOverride All
Order allow,deny
allow from all
# This directive allows us to have apache2's default start page
# in /apache2-default/, but still have / go to the right place
# Commented out for Ubuntu
#RedirectMatch ^/$ /apache2-default/
</Directory>
ErrorLog /home/example/Apache_Logs/local_example.com_error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog /home/example/Apache_Logs/local_example.com_access.log combined
ServerSignature On
</VirtualHost>
задан
1 April 2015 в 07:53
поделиться
5 ответов
Оказывается, что проблемой были полномочия.
при хранении веб-сайта в каталоге за пределами /var/www
и соединенные символьной ссылкой, тогда исходный каталог, и его родительский каталог должен иметь полномочия 755
.
По некоторой неизвестной причине, два неправильно себя ведущих сайта имели различные полномочия, и выполнение chmod -R 755
на каталоге веб-сайта и родитель каталог, решило проблему.
ответ дан Questioner
1 April 2015 в 07:53
поделиться
Попробуйте следующий
, Включают подробные журналы
sudo nano /etc/apache2/apache2.conf
, Определяют местоположение переменной LogLevel и обновляют, она от значения по умолчанию предупреждает информации или отладке. отладка произведет самую большую сумму вывода.
# LogLevel: Control the number of messages logged to the error_log.
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
#
LogLevel debug
Apache
sudo service apache2 restart
Apache Перезапуска включает миленький инструмент проверки синтаксиса
apache2ctl -t
Проверяющие Виртуальные Определения Хоста
apache2ctl -S
ответ дан Alexis Wilke
1 April 2015 в 07:53
поделиться
после установки index.html имеет более высокий приоритет вот почему Вы все еще видящий, что страница Ubuntu по умолчанию проверяет, что эта папка, var/www/html/, переименовывает или удаляет эту страницу, простую как это
ответ дан Amin
1 April 2015 в 17:53
поделиться
Для меня одно из предложений от @Dan решило его.
sudo a2dissite 000-default.conf
service apache2 reload
, По-видимому, конфигурация сайта по умолчанию переопределяла мою vhost конфигурацию.
ответ дан highfalutin
3 August 2019 в 21:30
поделиться
Я боролся с той же проблемой.
Я даже удалил /var/www/html
, сделал sudo a2dissite 000-default
и удалил /etc/apache2/sites-available/000-default.conf
и даже тогда проблема сохранялась.
В конце концов я понял, что index.html
был сохранен из-за некоторого жесткого кодирования в коде C++.
Встроенный по умолчанию DirectoryIndex
находится в /mods-available/dir.conf
и выглядит следующим образом:
DirectoryIndex index.html index.cgi index.pl index. php index.xhtml index.htm
В моем проекте не было index.html
, только index.php
Решением было добавить DirectoryIndex
на мой виртуальный хост .conf в /etc/apache2/sites-available/
вот так:
<Directory "/var/www/mysite">
RewriteEngine On
AllowOverride All
Options Indexes FollowSymLinks MultiViews
Require all granted
#extra config to disable default index.html
DirectoryIndex disabled
DirectoryIndex index.php
</Directory>
Это полностью решило проблему для меня.
ответ дан Jonas Stumph Stevnsvig
28 November 2020 в 23:50
поделиться
Другие вопросы по тегам:
Похожие вопросы:
<VirtualHost *:80>
ServerAdmin webmaster@localhost
ServerName [servername]
DocumentRoot /home/[username]/www/[servername]/
<Directory />
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
<Directory /home/user/[username]/[servername]/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
ErrorLog /home/[username]/www/[servername]/log/apache2/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog /home/[username]/www/[servername]/access.log combined
Alias /doc/ "/usr/share/doc/"
<Directory "/usr/share/doc/">
Options Indexes MultiViews FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
Allow from 127.0.0.0/255.0.0.0 ::1/128
</Directory>
</VirtualHost>
(sites-enabled)
Пользователь решил продолжить мысль 19 Декабря 2012, 16:10:17:
<VirtualHost *:80>
ServerAdmin webmaster@localhost
ServerName [servername]
DocumentRoot /home/[username]/www/[servername]/
<Directory />
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
<Directory /home/user/[username]/[servername]/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
ErrorLog /home/[username]/www/[servername]/log/apache2/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog /home/[username]/www/[servername]/access.log combined
Alias /doc/ "/usr/share/doc/"
<Directory "/usr/share/doc/">
Options Indexes MultiViews FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
Allow from 127.0.0.0/255.0.0.0 ::1/128
</Directory>
</VirtualHost>
sites-available