Sha256: 3757c601278fd11c808089d3e84bcddcd783ed8828bedb5b8c91443bc38c4fad
Contents?: true
Size: 695 Bytes
Versions: 27
Compression:
Stored size: 695 Bytes
Contents
# frozen_string_literal: true require 'eac_ruby_utils/core_ext' require 'avm/entries/jobs/base' require 'avm/eac_ubuntu_base0/apache' require 'eac_templates/core_ext' module Avm module EacWebappBase0 module Instances class ApacheBase # @return [String] def document_root instance.read_entry(::Avm::Instances::EntryKeys::INSTALL_PATH) end protected def reload_apache infom 'Reloading Apache...' apache.service('reload') end private # @return [Avm::EacUbuntuBase0::Apache] def apache_uncached instance.platform_instance.apache end end end end end
Version data entries
27 entries across 27 versions & 2 rubygems