Welcome Guest, Not a member yet? Register   Sign In
routes working only in local
#11

I also tried this configuration:
Code:
location /jobs/ {
    index index.php;
    root  myroute;
    if ($request_filename !~ (js|css|images|robots\.txt|index\.php.*) ) {
        rewrite ^/(.*)$ /index.php/$1 last;
    }
}
location ~ /jobs/index.php/ {
    include /etc/nginx/fastcgi.conf;
    fastcgi_index  index.php;
    fastcgi_param  SCRIPT_FILENAME  myroute/index.php;
    fastcgi_param  REQUEST_URI      $request_uri;
    fastcgi_param  QUERY_STRING     $query_string;
    fastcgi_param  REQUEST_METHOD   $request_method;
    fastcgi_param  CONTENT_TYPE     $content_type;
    fastcgi_param  CONTENT_LENGTH   $content_length;
    fastcgi_pass   127.0.0.1:9000;
}

But you are blocked images and css file with a 404 error and also the controller still does not work ...
Reply


Messages In This Thread
routes working only in local - by StratoKyke - 06-10-2015, 10:32 AM
RE: routes working only in local - by StratoKyke - 06-10-2015, 12:42 PM
RE: routes working only in local - by RogerMore - 06-10-2015, 01:21 PM
RE: routes working only in local - by StratoKyke - 06-10-2015, 02:40 PM
RE: routes working only in local - by CroNiX - 06-10-2015, 03:31 PM
RE: routes working only in local - by StratoKyke - 06-10-2015, 03:51 PM
RE: routes working only in local - by StratoKyke - 06-12-2015, 04:32 AM
RE: routes working only in local - by CroNiX - 06-10-2015, 04:52 PM
RE: routes working only in local - by StratoKyke - 06-10-2015, 11:54 PM
RE: routes working only in local - by StratoKyke - 06-11-2015, 01:03 AM
RE: routes working only in local - by StratoKyke - 06-11-2015, 12:47 PM
RE: routes working only in local - by StratoKyke - 06-12-2015, 12:38 AM
RE: routes working only in local - by StratoKyke - 06-12-2015, 02:03 PM
RE: routes working only in local - by John_Betong - 06-12-2015, 06:40 PM
RE: routes working only in local - by StratoKyke - 06-12-2015, 09:57 PM
RE: routes working only in local - by StratoKyke - 06-13-2015, 08:53 AM
RE: routes working only in local - by StratoKyke - 06-13-2015, 10:02 AM
RE: routes working only in local - by StratoKyke - 06-13-2015, 01:16 PM



Theme © iAndrew 2016 - Forum software by © MyBB