Changes between Version 46 and Version 47 of ServerArrangements


Ignore:
Timestamp:
Mar 13, 2010, 7:28:10 PM (14 years ago)
Author:
tbelote
Comment:

root copies the location in the file path alias will lop of the path allowing you to point directly at the folder instead of its parent.

Legend:

Unmodified
Added
Removed
Modified
  • ServerArrangements

    v46 v47  
    7272error_log /path/to/logs/appname-error.log;
    7373
     74location /media  {
     75        alias /path/to/media;
     76}
     77
     78
    7479location /styles  {
    75         root /path/to/styles;
     80        alias /path/to/styles;
    7681}
    7782
    7883location /javascripts  {
    79         root /path/to/javascripts;
     84        alias /path/to/javascripts;
    8085}
    8186
Back to Top