You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
this is my conf
location /upload{
root /usr/local/software/appstorm;
#rewrite ^upload/(.*)$ /usr/local/nginx/html/$1 last;
#root /usr/local/nginx/html;
index index.html index.htm;
}
location / {
set $clientId $arg_clientId;
set $id $arg_id;
#set_quote_sql_str $quoted_clientId $clientId;
#set_quote_sql_str $quoted_id $id;
#drizzle_query "select * from t_upgrade_user";
drizzle_query "INSERT INTO t_upgrade_user(p_client_id,p_lib_id) values('$clientId','$id')";
drizzle_pass mysqlbackend;
drizzle_module_header off;
#rds_json on;
#root /usr/local/software/appstorm;
#root /usr/local/nginx/html;
#index index.html index.htm;
rewrite ^/(.*)$ /upload/$1 last;
}
Can be successfully inserted into the MySQL database, but as you can see I do not want to insert the successful state returned to client. I want to get the download path for root.
What can I do?
The text was updated successfully, but these errors were encountered:
hello :
Can be successfully inserted into the MySQL database, but as you can see I do not want to insert the successful state returned to client. I want to get the download path for root.
What can I do?
The text was updated successfully, but these errors were encountered: