Hi all,
I am new to configuring nginx and have been following many tutorials but to no avail in trying to get a subdomain routed correctly.
quick sidenotes, my domain is hosted elsewhere and for now I have beta.domain pointing to DO - until I can test site works then I will migrate. Also, my LEMP installation is the default just with my custom site.
my sites-available/example.com file reads as follows (note it’s not actually called example.com i’m just substituting that for question purposes).
server {
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;
root /usr/share/nginx/example.com/public;
index index.php;
server_name example.com;
try_files $uri $uri/ @rewrite;
location @rewrite {
rewrite ^/(.*)$ /index.php/$1;
}
location ~ [^/]\.php(/|$) {
try_files $uri $uri/ @rewrite;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
}
I effectively have this block in my config, one for eaxmple.com and another for beta.example.com.
after a morning trying my laravel is at least working when I do beta.example.com/index.php/page but I would like to turn this into beta.example.com/page.
Thanks in advance for any replies.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
FastCGI’s SCRIPT_FILENAME parameter isn’t set properly – replace
location ~ [^/]\.php(/|$) {
try_files $uri $uri/ @rewrite;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
with
location ~ \.php$ {
try_files $uri =404;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
and restart nginx:
sudo service nginx restart
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.