Субдомен Apache2

Это первый раз, когда я пытаюсь разместить веб-сайт. Сначала я купил домен на "Страто", и я получил Apache, работающий на этом домене через сервер Ubuntu и наш Fitzbox с помощью Dyndns. Но теперь я хочу сделать следующий шаг и разместить поддомен. Я создал поддомен в веб-интерфейсе Strato и попытался настроить его в Apache, но не могу подключиться к нему. Если я изменю DynDns в нашей fritzbox на поддомен, я могу подключиться к поддомену, но не к обычному домену, вы знаете, что я могу сделать, чтобы связаться с ними через Интернет?

В apache я создал 2 файла: 000.default.conf ---- они оба включены

<VirtualHost *:80>
    # The ServerName directive sets the request scheme, hostname and port that
    # the server uses to identify itself. This is used when creating
    # redirection URLs. In the context of virtual hosts, the ServerName
    # specifies what hostname must appear in the request's Host: header to
    # match this virtual host. For the default virtual host (this file) this
    # value is not decisive as it is used as a last resort host regardless.
    # However, you must set it for any further virtual host explicitly.


    ServerName www.SaneQt.de
    ServerAdmin webmaster@localhost
    DocumentRoot /var/www/000

    # Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
    # error, crit, alert, emerg.
    # It is also possible to configure the loglevel for particular
    # modules, e.g.
    #LogLevel info ssl:warn

    ErrorLog ${APACHE_LOG_DIR}/error.log
    CustomLog ${APACHE_LOG_DIR}/access.log combined

    # For most configuration files from conf-available/, which are
    # enabled or disabled at a global level, it is possible to
    # include a line for only one particular virtual host. For example the
    # following line enables the CGI configuration for this host only
    # after it has been globally disabled with "a2disconf".
    #Include conf-available/serve-cgi-bin.conf
</VirtualHost>

001-oneway.conf

<VirtualHost *:80>

    ServerName onewaygaming.saneqt.de
    DocumentRoot /var/www/001

</VirtualHost>

FritzboxSettings: порт 80 открыт, и я использовал этот параметр Fritzbox DynDns Settings

Страто: Страто Домены

Я действительно извиняюсь за мой английский, я не лучший в школе, я надеюсь, что вы можете игнорировать этот факт...

Заранее спасибо!!

1 ответ

Решение

Ваши настройки apache в порядке, проблема с DNS:

onewaygaming.saneqt.de:

;QUESTION
onewaygaming.saneqt.de. IN A
;ANSWER
onewaygaming.saneqt.de. 149 IN A 81.169.145.156

www.SaneQt.de:

www.SaneQt.de. IN A
;ANSWER
www.SaneQt.de. 149 IN CNAME SaneQt.de.
SaneQt.de. 59 IN A 46.243.84.57

В данный момент http://www.saneqt.de/ отвечает Hallo welt так что я думаю, что у него правильные настройки. Если это так, вам нужно настроить CNAME запись для onewaygaming.saneqt.de точно так же, как вы сделали для www.SaneQt.de,

Другие вопросы по тегам