123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- server {
- listen 80;
- listen [::]:80;
- # SSL configuration
- #
- # listen 443 ssl default_server;
- # listen [::]:443 ssl default_server;
- #
- # Self signed certs generated by the ssl-cert package
- # Don't use them in a production server!
- #
- # include snippets/snakeoil.conf;
- root /var/www/daktylos/htdocs;
- # Add index.php to the list if you are using PHP
- index index.php index.html;
- server_name *.daktylos.copperwirecode.com;
- location / {
- # First attempt to serve request as file, then
- # as directory, then fall back to displaying a 404.
- try_files $uri $uri/ =404;
- }
- location /api/ {
- try_files $uri $uri/ /api/index.php$is_args$args;
- }
- location /dashboard/ {
- try_files $uri $uri/ /dashboard/index.php$is_args$args;
- }
- # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
- #
- location ~ \.php$ {
- include snippets/fastcgi-php.conf;
- fastcgi_param ENVIRONMENT staging;
-
- # With php5-cgi alone:
- fastcgi_pass 127.0.0.1:9000;
- }
- # deny access to .htaccess files, if Apache's document root
- # concurs with nginx's one
- #
- #location ~ /\.ht {
- # deny all;
- #}
- }
|