Skip to content

Commit

Permalink
Merge branch 'release/1.0.31'
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Welch committed Nov 19, 2020
2 parents b2df2ec + 967663c commit 6a46f79
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Nginx-Craft Changelog

## 1.0.31 - 2020.11.19
### Changed
* Changed `public` to `web` for the server `root` example

## 1.0.30 - 2020.11.05
### Added
* Added support for [Forge Templates](https://forge.laravel.com/docs/1.0/servers/nginx-templates.html) via `forge-templates/NginxTemplate.conf`
Expand Down
2 changes: 1 addition & 1 deletion sites-available/basic_localdev.com.conf
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ server {
# General virtual host settings
server_name SOMEDOMAIN.com;
server_tokens off;
root "/var/www/SOMEDOMAIN/public";
root "/var/www/SOMEDOMAIN/web";
index index.html index.htm index.php;
charset utf-8;

Expand Down
2 changes: 1 addition & 1 deletion sites-available/somedomain.com.conf
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ server {
# General virtual host settings
server_name SOMEDOMAIN.com;
server_tokens off;
root "/var/www/SOMEDOMAIN/public";
root "/var/www/SOMEDOMAIN/web";
index index.html index.htm index.php;
charset utf-8;

Expand Down

0 comments on commit 6a46f79

Please sign in to comment.