| Left: | ||
| Right: |
| LEFT | RIGHT |
|---|---|
| (no file at all) | |
| 1 location <%= @location_base %>/ | |
| 2 { | |
| 3 fastcgi_pass unix:/tmp/<%= @name %>-fastcgi.sock; | |
| 4 fastcgi_split_path_info ^(<%= @location_base %>)(.*)$; | |
| 5 include /etc/nginx/fastcgi_params; | |
| 6 fastcgi_param SCRIPT_NAME $fastcgi_script_name; | |
| 7 fastcgi_param PATH_INFO $fastcgi_path_info; | |
| 8 client_max_body_size 20m; | |
| 9 } | |
| 10 | |
| 11 location <%= @location_base %>/chrome/ | |
| 12 { | |
| 13 alias /home/trac/htdocs-<%= @name %>/htdocs/; | |
| 14 } | |
| 15 | |
| LEFT | RIGHT |