Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
noblogs-wp
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ai
noblogs-wp
Commits
ee97d1af
Commit
ee97d1af
authored
9 years ago
by
ale
Committed by
agata
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
read master IP from /etc/noblogs/master
parent
c2b4b2f7
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
wp-nginx-map.php
+4
-3
4 additions, 3 deletions
wp-nginx-map.php
with
4 additions
and
3 deletions
wp-nginx-map.php
+
4
−
3
View file @
ee97d1af
...
...
@@ -4,7 +4,8 @@
//
// Stampa una mappa delle assegnazioni blog -> backend, per NGINX.
// IP interno del master.
define
(
'NOBLOGS_MASTER'
,
'172.16.1.10'
);
$master_url
=
file_get_contents
(
'/etc/noblogs/master'
);
$noblogs_master
=
parse_url
(
$master_url
)[
'host'
];
// Load wordpress api.
define
(
'WP_CACHE'
,
false
);
...
...
@@ -25,7 +26,7 @@ function printline($s) {
function
backend_to_http_endpoint
(
$backend
)
{
if
(
substr
(
$backend
,
0
,
8
)
!=
'backend_'
)
{
error_log
(
'diamine, di questo backend non so che farmene: '
.
$backend
);
return
NOBLOGS_MASTER
.
':82'
;
return
$noblogs_master
.
':82'
;
}
$id
=
substr
(
$backend
,
8
);
return
'172.16.1.'
.
$id
.
':82'
;
...
...
@@ -39,7 +40,7 @@ function generate_map() {
$blogs
=
get_blogs
();
printline
(
'map $http_host $backend_noblogs {'
);
printline
(
' default http://'
.
NOBLOGS_MASTER
.
':82;'
);
printline
(
' default http://'
.
$noblogs_master
.
':82;'
);
foreach
(
$blogs
as
$blog
)
{
$blog_id
=
$blog
->
blog_id
;
if
(
$blog_id
==
1
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment