Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
failover-proxy
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
certo
failover-proxy
Commits
f440080c
Commit
f440080c
authored
May 19, 2019
by
Yuri Aksenov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Initial commit
parents
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
36 additions
and
0 deletions
+36
-0
Makefile
Makefile
+4
-0
failoverProxy.conf
failoverProxy.conf
+10
-0
nginx.conf
nginx.conf
+22
-0
No files found.
Makefile
0 → 100644
View file @
f440080c
all
:
rm
/etc/nginx/nginx.conf
install
-v
-Dm644
failoverProxy.conf /etc/nginx/failoverProxy.conf
install
-v
-Dm644
nginx.conf /etc/nginx/nginx.conf
failoverProxy.conf
0 → 100644
View file @
f440080c
location
/ {
proxy_intercept_errors
on
;
proxy_pass
http
://
rgw
.
ceph
.
iszf
.
irk
.
ru
;
error_page
403
404
= @
fallback
;
}
location
@
fallback
{
proxy_pass
http
://
rgw
.
ceph
.
badary
.
iszf
.
irk
.
ru
;
}
nginx.conf
0 → 100644
View file @
f440080c
events
{
worker_connections
1024
;
}
http
{
include
mime.types
;
default_type
application/octet-stream
;
sendfile
on
;
keepalive_timeout
65
;
server
{
listen
80
;
server_name
localhost
;
recursive_error_pages
on
;
include
failoverProxy.conf
;
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment