Show More
@@ -4,12 +4,14 b' Changelog' | |||
|
4 | 4 | ========= |
|
5 | 5 | |
|
6 | 6 | |
|
7 |
1.1.8 (**2011-04- |
|
|
7 | 1.1.8 (**2011-04-12**) | |
|
8 | 8 | ====================== |
|
9 | 9 | |
|
10 | 10 | news |
|
11 | 11 | ---- |
|
12 | 12 | |
|
13 | - improved windows support | |
|
14 | ||
|
13 | 15 | fixes |
|
14 | 16 | ----- |
|
15 | 17 | |
@@ -17,18 +19,17 b' fixes' | |||
|
17 | 19 | incompatible |
|
18 | 20 | - setup-app will check for write permission in given path |
|
19 | 21 | - cleaned up license info issue #149 |
|
20 |
- fixes for issues #137,#116 and |
|
|
21 | accented characters. | |
|
22 | - fixes for issues #137,#116 and problems with unicode and accented characters. | |
|
22 | 23 | - fixes crashes on gravatar, when passed in email as unicode |
|
23 | 24 | - fixed tooltip flickering problems |
|
24 | 25 | - fixed came_from redirection on windows |
|
25 | - fixed logging modules,and sql formatters | |
|
26 | - windows fixes for os.kill #133 | |
|
26 | - fixed logging modules, and sql formatters | |
|
27 | - windows fixes for os.kill issue #133 | |
|
27 | 28 | - fixes path splitting for windows issues #148 |
|
28 | 29 | - fixed issue #143 wrong import on migration to 1.1.X |
|
29 | 30 | - fixed problems with displaying binary files, thanks to Thomas Waldmann |
|
30 | - removed name from archive files since it's breaking ui for long names | |
|
31 |
- fixed issue wit |
|
|
31 | - removed name from archive files since it's breaking ui for long repo names | |
|
32 | - fixed issue with archive headers sent to browser, thanks to Thomas Waldmann | |
|
32 | 33 | - fixed compatibility for 1024px displays, and larger dpi settings, thanks to |
|
33 | 34 | Thomas Waldmann |
|
34 | 35 | - fixed issue #166 summary pager was skipping 10 revisions on second page |
@@ -328,10 +328,60 b' Add the following at the end of the .ini' | |||
|
328 | 328 | |
|
329 | 329 | then change <someprefix> into your choosen prefix |
|
330 | 330 | |
|
331 |
Apache's example |
|
|
332 | ---------------------------- | |
|
331 | Apache's example WSGI+SSL config | |
|
332 | -------------------------------- | |
|
333 | ||
|
334 | virtual host example:: | |
|
333 | 335 |
|
|
334 | TODO ! | |
|
336 | <VirtualHost *:443> | |
|
337 | ServerName hg.domain.eu:443 | |
|
338 | DocumentRoot /var/www | |
|
339 | ||
|
340 | SSLEngine on | |
|
341 | SSLCertificateFile /etc/apache2/ssl/hg.domain.eu.cert | |
|
342 | SSLCertificateKeyFile /etc/apache2/ssl/hg.domain.eu.key | |
|
343 | SSLCertificateChainFile /etc/apache2/ssl/ca.cert | |
|
344 | SetEnv HTTP_X_URL_SCHEME https | |
|
345 | ||
|
346 | Alias /css /home/web/virtualenvs/hg/lib/python2.6/site-packages/rhodecode/public/css | |
|
347 | Alias /images /home/web/virtualenvs/hg/lib/python2.6/site-packages/rhodecode/public/images | |
|
348 | Alias /js /home/web/virtualenvs/hg/lib/python2.6/site-packages/rhodecode/public/js | |
|
349 | ||
|
350 | WSGIDaemonProcess hg user=web group=web processes=1 threads=10 display-name=%{GROUP} python-path=/home/web/virtualenvs/hg/lib/python2.6/site-packages | |
|
351 | ||
|
352 | WSGIPassAuthorization On | |
|
353 | WSGIProcessGroup hg | |
|
354 | WSGIApplicationGroup hg | |
|
355 | WSGIScriptAlias / /home/web/apache/conf/hg.wsgi | |
|
356 | ||
|
357 | <Directory /home/web/apache/conf> | |
|
358 | Order deny,allow | |
|
359 | Allow from all | |
|
360 | </Directory> | |
|
361 | <Directory /var/www> | |
|
362 | Order deny,allow | |
|
363 | Allow from all | |
|
364 | </Directory> | |
|
365 | ||
|
366 | </VirtualHost> | |
|
367 | ||
|
368 | <VirtualHost *:80> | |
|
369 | ServerName hg.domain.eu | |
|
370 | Redirect permanent / https://hg.domain.eu/ | |
|
371 | </VirtualHost> | |
|
372 | ||
|
373 | ||
|
374 | HG.WSGI:: | |
|
375 | ||
|
376 | import os | |
|
377 | os.environ["HGENCODING"] = "UTF-8" | |
|
378 | ||
|
379 | from paste.deploy import loadapp | |
|
380 | from paste.script.util.logging_config import fileConfig | |
|
381 | ||
|
382 | fileConfig('/home/web/virtualenvs/hg/config/production.ini') | |
|
383 | application = loadapp('config:/home/web/virtualenvs/hg/config/production.ini' | |
|
384 | ||
|
335 | 385 |
|
|
336 | 386 | Other configuration files |
|
337 | 387 | ------------------------- |
General Comments 0
You need to be logged in to leave comments.
Login now