Last active
July 3, 2020 14:24
-
-
Save jewishmoses/e8491aa36d685fb4fabd0ab330656093 to your computer and use it in GitHub Desktop.
Revisions
-
jewishmoses revised this gist
Jul 3, 2020 . No changes.There are no files selected for viewing
-
jewishmoses revised this gist
Jul 3, 2020 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -5,7 +5,7 @@ server { server_name example.com; location / { try_files $uri $uri/ /index.php?$query_string; } location ~ \.php$ { -
jewishmoses revised this gist
Jul 3, 2020 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,6 @@ server { listen 80; root /var/www/example.com/website/public; index index.php index.html index.htm index.nginx-debian.html; server_name example.com; -
jewishmoses revised this gist
Jul 3, 2020 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,6 @@ server { listen 80; root /var/www/example.com/website; index index.php index.html index.htm index.nginx-debian.html; server_name example.com; -
jewishmoses revised this gist
Jul 3, 2020 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,6 @@ server { listen 80; root /var/www/example.com/html; index index.php index.html index.htm index.nginx-debian.html; server_name example.com; -
jewishmoses created this gist
Jul 3, 2020 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,19 @@ server { listen 80; root /var/www/html; index index.php index.html index.htm index.nginx-debian.html; server_name example.com; location / { try_files $uri $uri/ =404; } location ~ \.php$ { include snippets/fastcgi-php.conf; fastcgi_pass unix:/var/run/php/php7.2-fpm.sock; } location ~ /\.ht { deny all; } }