aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorCamil Staps2015-05-20 17:52:14 +0200
committerCamil Staps2015-05-20 17:52:14 +0200
commit6027bfafb1a9fa0e865a8a4fe8109826e1519733 (patch)
tree7433e8c4da1aeac8b5c028bc41800e341286e745 /docs
parentadded disabling CSRF to installation instructions (diff)
nginx example config
Diffstat (limited to 'docs')
-rw-r--r--docs/nginx.conf25
1 files changed, 25 insertions, 0 deletions
diff --git a/docs/nginx.conf b/docs/nginx.conf
new file mode 100644
index 0000000..47e3295
--- /dev/null
+++ b/docs/nginx.conf
@@ -0,0 +1,25 @@
+server {
+ listen 443 ssl;
+
+ root /path-to-laravel-project;
+ index server.php;
+
+ server_name api.domain.com;
+
+ # You MUST have an SSL certificate as we're going to transmit passwords.
+ # Don't worry, for testing you can use a self-signed certificate. And you
+ # can always use a free certificate as well, if you don't mind.
+ ssl_certificate /etc/nginx/ssl/botleagues.crt;
+ ssl_certificate_key /etc/nginx/ssl/botleagues.key;
+
+ location / {
+ try_files $uri $uri/ /server.php?$query_string;
+ }
+
+ location ~ \.php$ {
+ fastcgi_split_path_info ^(.+\.php)(/.+)$;
+ fastcgi_pass unix:/var/run/php5-fpm.sock;
+ fastcgi_index index.php;
+ include fastcgi_params;
+ }
+}