Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-07-28 12:09:41 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-07-28 12:09:41 +0300
commit829e846dd576e3443e2f09f37d7c3963cecf4e51 (patch)
treec081187efcea6cb3f6b8802652f87c71cca8a8d3 /lib/gitlab/pages
parentc7bdf2532145e8f36a26685ed83fc8e5aaf7f31f (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'lib/gitlab/pages')
-rw-r--r--lib/gitlab/pages/settings.rb21
1 files changed, 21 insertions, 0 deletions
diff --git a/lib/gitlab/pages/settings.rb b/lib/gitlab/pages/settings.rb
new file mode 100644
index 00000000000..e3dbeee7b13
--- /dev/null
+++ b/lib/gitlab/pages/settings.rb
@@ -0,0 +1,21 @@
+# frozen_string_literal: true
+
+module Gitlab
+ module Pages
+ class Settings < ::SimpleDelegator
+ DiskAccessDenied = Class.new(StandardError)
+
+ def path
+ if ::Gitlab::Runtime.web_server? && ENV['GITLAB_PAGES_DENY_DISK_ACCESS'] == '1'
+ begin
+ raise DiskAccessDenied
+ rescue DiskAccessDenied => ex
+ ::Gitlab::ErrorTracking.track_exception(ex)
+ end
+ end
+
+ super
+ end
+ end
+ end
+end