Edgewall Software

Changes between Version 82 and Version 83 of TracFastCgi


Ignore:
Timestamp:
Sep 24, 2014, 12:45:29 PM (10 years ago)
Author:
anonymous
Comment:

nginx regexp on /trac/* requires similar one for /chrome

Legend:

Unmodified
Added
Removed
Modified
  • TracFastCgi

    v82 v83  
    386386        ssl_prefer_server_ciphers   on;
    387387
    388         # it makes sense to serve static resources through Nginx (or ``[/some/prefix]/chrome/``)
    389         location /chrome/ {
    390              alias /home/trac/instance/static/htdocs/;
     388        # it makes sense to serve static resources through Nginx (or ``~ [/some/prefix]/chrome/(.*)``)
     389        location ~ /chrome/(.*) {
     390             alias /home/trac/instance/static/htdocs/$1;
    391391        }
    392392