Changes between Version 9 and Version 10 of InitdScriptForLinux


Ignore:
Timestamp:
Jul 31, 2010, 4:06:39 AM (14 years ago)
Author:
dat94egu
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • InitdScriptForLinux

    v9 v10  
    175175PORT=$(($PORT + 1))
    176176}}}
     177
     178== Some improvements ==
     179To make the script a bit less random, so it is easier to connect to the web-server use named sockets instead.
     180Replace:
     181{{{
     182host=$HOST port=$PORT
     183}}}
     184With:
     185{{{
     186socket=$SITES_PATH/$SITE/$SITE.sock
     187}}}
     188
     189This will obvious not work if the django site(s) and the web server are on different machines.
Back to Top