Commit 32baafc9bc94deb625e6e21d7c4f36bf1d519f99
1 parent
b48f16d4
Exists in
master
and in
29 other branches
Fix typo in sample apache configuration
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
INSTALL
... | ... | @@ -148,7 +148,7 @@ HACKING file instead. |
148 | 148 | RewriteRule ^([^.]+)$ $1.html [QSA] |
149 | 149 | |
150 | 150 | RewriteCond %{DOCUMENT_ROOT}/%{REQUEST_FILENAME} !-f |
151 | - RewriteRule ^.*$ balancer://noosfero-%{REQUEST_URI} [P,QSA,L] | |
151 | + RewriteRule ^.*$ balancer://noosfero%{REQUEST_URI} [P,QSA,L] | |
152 | 152 | |
153 | 153 | ErrorDocument 503 /503.html |
154 | 154 | |
... | ... | @@ -160,7 +160,7 @@ HACKING file instead. |
160 | 160 | |
161 | 161 | </VirtualHost> |
162 | 162 | |
163 | - <Proxy balancer://noosfero-test> | |
163 | + <Proxy balancer://noosfero> | |
164 | 164 | BalancerMember http://127.0.0.1:4000 |
165 | 165 | BalancerMember http://127.0.0.1:4001 |
166 | 166 | Order Allow,Deny | ... | ... |