A
A
Alexander Bagirov2014-04-10 17:34:23
linux
Alexander Bagirov, 2014-04-10 17:34:23

How to set up apache on Fedora?

Hello!
I'm setting up a system to run tournaments and automatically check Ejudge decisions.
Followed two instructions all the time: this one and this one .
Everything went well, the system did not give any errors at the end of the installation.
Now you need to somehow configure the web server so that when you enter localhost, the system opens. In one of the instructions (official) there is no mention of this at all, and in the second it is not described in great detail.
Please tell me what I need to edit from the settings to open the site?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
E
Edward, 2014-04-16
@alexbagirov

Virtualhosts example:
Go to /etc/httpd/conf
Open: ./httpd.conf
Scroll to the bottom of the file and you will probably see the standard markup like this:

<VirtualHost>
...
</VirtualHost>

Kill from the opening tag to the closing tag and write something like this:
#звездочка: обозначает все хосты, то есть включая localhost | 127.0.0.1
# 80 - порт на котором сервер будет отдавать этот хост
<VirtualHost *:80>
#Директория куда будут сыпаться логи с ошибками (они понадобятся)
        ErrorLog /var/www/logs/pma-error_log
#Директория куда будут сыпаться логи доступов и сообщения типа [info]
        CustomLog /var/www/logs/pma-access_log combined

# тут вы непосредственно указываете хост по которому сервер будет отдавать контент
        ServerName localhost
#кодировка
        AddDefaultCharset UTF-8
#директория где установлена Ваша система
        DocumentRoot /usr/share/phpmyadmin
#дополнительные директивы опять же с директорией системы
        <Directory /usr/share/phpmyadmin>
                Options FollowSymLinks
# тут указывается точка входа, например index.html
                DirectoryIndex index.php

# опять же если используется php то эти директивы не помешают
                AddType application/x-httpd-php .php
                php_flag magic_quotes_gpc Off
                php_flag track_vars On
                php_flag register_globals Off
                php_value include_path .
        </Directory>
</VirtualHost>

Something like this

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question