Ad Widget

Collapse

Cannot set Suse Apache Vhost to zabbix.mydomain.com

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • iCLodpAssic
    Junior Member
    • Jul 2025
    • 9

    #1

    Cannot set Suse Apache Vhost to zabbix.mydomain.com

    Hello ! I'm having trouble moving my frontend from zabbix.mydomain.com/zabbix to zabbix.mydomain.com
    I've read https://www.zabbix.com/forum/zabbix-...to-virtualhost but this didn't help me.

    Code:
    cat zabbix.myhost.com
    
    #
    
    # VirtualHost template
    
    # Note: to use the template, rename it to /etc/apache2/vhost.d/yourvhost.conf.
    
    # Files must have the .conf suffix to be loaded.
    
    #
    
    # See https://en.opensuse.org/SDB:Apache_installation for further hints
    
    # about virtual hosts.
    
    #
    
    # Almost any Apache directive may go into a VirtualHost container.
    
    # The first VirtualHost section is used for requests without a known
    
    # server name.
    
    #
    
    <VirtualHost *:80>
    
    ServerAdmin [email protected]
    
    ServerName zabbix.myhost.com
    
    
    
    
    # DocumentRoot: The directory out of which you will serve your
    
    # documents. By default, all requests are taken from this directory, but
    
    # symbolic links and aliases may be used to point to other locations.
    
    DocumentRoot /usr/share/zabbix
    
    
    
    
    # if not specified, the global error log is used
    
    # ErrorLog /var/log/apache2/ddummy-host.example.com-error_log
    
    # CustomLog /var/log/apache2/dummy-host.example.com-access_log combined
    
    
    
    
    # don't loose time with IP address lookups
    
    HostnameLookups Off
    
    
    
    
    # needed for named virtual hosts
    
    UseCanonicalName Off
    
    
    
    
    # configures the footer on server-generated documents
    
    ServerSignature On
    
    
    
    
    
    
    
    # Optionally, include *.conf files from /etc/apache2/conf.d/
    
    #
    
    # For example, to allow execution of PHP scripts:
    
    #
    
    # Include /etc/apache2/conf.d/php5.conf
    
    #
    
    # or, to include all configuration snippets added by packages:
    
    # Include /etc/apache2/conf.d/*.conf
    
    
    
    
    
    
    
    # ScriptAlias: This controls which directories contain server scripts.
    
    # ScriptAliases are essentially the same as Aliases, except that
    
    # documents in the realname directory are treated as applications and
    
    # run by the server when requested rather than as documents sent to the client.
    
    # The same rules about trailing "/" apply to ScriptAlias directives as to
    
    # Alias.
    
    #
    
    ScriptAlias /cgi-bin/ "/usr/share/zabbix/cgi-bin/"
    
    
    
    
    # "/srv/www/cgi-bin" should be changed to whatever your ScriptAliased
    
    # CGI directory exists, if you have one, and where ScriptAlias points to.
    
    #
    
    <Directory "/usr/share/zabbix/cgi-bin">
    
    # AllowOverride None
    
    # Options +ExecCGI -Includes
    
    # <IfModule !mod_access_compat.c>
    
    # Require all granted
    
    # </IfModule>
    
    # <IfModule mod_access_compat.c>
    
    # Order allow,deny
    
    # Allow from all
    
    # </IfModule>
    
    #</Directory>
    
    
    
    
    
    
    
    # UserDir: The name of the directory that is appended onto a user's home
    
    # directory if a ~user request is received.
    
    #
    
    # To disable it, simply remove userdir from the list of modules in APACHE_MODULES
    
    # in /etc/sysconfig/apache2.
    
    #
    
    <IfModule mod_userdir.c>
    
    # Note that the name of the user directory ("public_html") cannot simply be
    
    # changed here, since it is a compile time setting. The apache package
    
    # would have to be rebuilt. You could work around by deleting
    
    # /usr/sbin/suexec, but then all scripts from the directories would be
    
    # executed with the UID of the webserver.
    
    UserDir public_html
    
    # The actual configuration of the directory is in
    
    # /etc/apache2/mod_userdir.conf.
    
    Include /etc/apache2/mod_userdir.conf
    
    # You can, however, change the ~ if you find it awkward, by mapping e.g.
    
    # http://www.example.com/users/karl-heinz/ --> /home/karl-heinz/public_html/
    
    #AliasMatch ^/users/([a-zA-Z0-9-_.]*)/?(.*) /home/$1/public_html/$2
    
    </IfModule>
    
    
    
    
    
    
    
    #
    
    # This should be changed to whatever you set DocumentRoot to.
    
    #
    
    <Directory "/usr/share/zabbix">
    
    
    
    
    #
    
    # Possible values for the Options directive are "None", "All",
    
    # or any combination of:
    
    # Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
    
    #
    
    # Note that "MultiViews" must be named *explicitly* --- "Options All"
    
    # doesn't give it to you.
    
    #
    
    # The Options directive is both complicated and important. Please see
    
    # http://httpd.apache.org/docs/2.4/mod/core.html#options
    
    # for more information.
    
    #
    
    Options Indexes FollowSymLinks
    
    
    
    
    #
    
    # AllowOverride controls what directives may be placed in .htaccess files.
    
    # It can be "All", "None", or any combination of the keywords:
    
    # Options FileInfo AuthConfig Limit
    
    #
    
    AllowOverride None
    
    
    
    
    #
    
    # Controls who can get stuff from this server.
    
    #
    
    <IfModule !mod_access_compat.c>
    
    Require all granted
    
    </IfModule>
    
    <IfModule mod_access_compat.c>
    
    Order allow,deny
    
    Allow from all
    
    </IfModule>
    
    
    
    
    </Directory>
    
    
    
    
    </VirtualHost>
  • Markku
    Senior Member
    Zabbix Certified SpecialistZabbix Certified ProfessionalZabbix Certified Expert
    • Sep 2018
    • 1781

    #2
    What is your Zabbix version? In my 7.4 apache.conf (provided by Zabbix) the directory is /usr/share/zabbix/ui

    Markki

    Comment

    • iCLodpAssic
      Junior Member
      • Jul 2025
      • 9

      #3
      Hello Markku !
      7.2.8

      Comment

      • Observer365
        Junior Member
        • May 2025
        • 7

        #4
        In my case, the new pass (/usr/share/zabbix/ui) for apache was introduced when I upgraded zabbix version from 7.0 to 7.2. The frontend message informed me that I should:
        1. Backup my configuration:
        Code:
        cp /etc/httpd/conf.d/zabbix.conf /etc/httpd/conf.d/zabbix.conf.bak
        2. Set the correct path in the configuration file:
        Code:
        sed -i 's:/usr/share/zabbix:/usr/share/zabbix/ui:g' /etc/httpd/conf.d/zabbix.conf
        3.Restart the web server.

        Comment


        • iCLodpAssic
          iCLodpAssic commented
          Editing a comment
          Hey! I'm running 7.2, my problem seems to be with Apache2 vhost config. Not really sure what I'm doing wrong tho.
      Working...