Updated simple.com to singlesite.com

This commit is contained in:
Ashley Rich 2015-11-17 11:15:07 +00:00
parent 68b8f99ed7
commit 916fd61051
2 changed files with 7 additions and 7 deletions

View File

@ -5,5 +5,5 @@
!.gitignore !.gitignore
!default !default
!fastcgi-cache.com !fastcgi-cache.com
!simple.com !singlesite.com
!ssl.com !ssl.com

View File

@ -3,17 +3,17 @@ server {
listen: 80; listen: 80;
# Server name to listen for # Server name to listen for
server_name simple.com; server_name singlesite.com;
# Path to document root # Path to document root
root /sites/simple.com/public; root /sites/singlesite.com/public;
# File to be used as index # File to be used as index
index index.php; index index.php;
# Overrides logs defined in global/logs.conf, allows per site logs. # Overrides logs defined in global/logs.conf, allows per site logs.
access_log /sites/simple.com/logs/access.log; access_log /sites/singlesite.com/logs/access.log;
error_log /sites/simple.com/logs/error.log; error_log /sites/singlesite.com/logs/error.log;
location / { location / {
try_files $uri $uri/ /index.php?$args; try_files $uri $uri/ /index.php?$args;
@ -31,7 +31,7 @@ server {
# Redirect www to non-www # Redirect www to non-www
server { server {
listen 80; listen 80;
server_name: www.simple.com; server_name: www.singlesite.com;
return 301 $scheme://simple.com$request_uri; return 301 $scheme://singlesite.com$request_uri;
} }