-
Published Answer
Add this to your nginx configuration file
location /public/images {
root /path/to/public/image;
}
Accepted Answer:
Add this to your nginx configuration file
location /public/images {
root /path/to/public/image;
}
•
By
lulzsecd
-
Published Answer
with php5: apt-get install php5-curl
with php7: apt-get install php7.0-curl
•
By
lulzsecd
-
Published Answer
Run 2 the following command:
chown -R www-data:www-data /path/to/laravel/public/forder
chmod +x /var/run/php5-fpm.sock
If yo…
•
By
lulzsecd
-
Published Answer
With NGINX, you can edit nginx configuration file
add this code
server {
listen 80;
server_name yourdomain....
•
By
lulzsecd
-
Published Answer
You install via docker or from source code
•
By
lulzsecd
-
Published Answer
Please see: https://meta.discourse.org/t/allowing-ssl-https-for-your-discourse-docker-setup/13847/43
•
By
lulzsecd
-
Published Answer
Hi, add this code into subdomain server block
location / {
return 301 https://www.crazytut.com$request_uri;
}
Remember chang…
•
By
lulzsecd
-
Published Answer
Edit your domain conf
Server www.crazytut.com crazytut.com;
•
By
lulzsecd
-
Published Answer
You can build nginx from source
•
By
lulzsecd
-
Published Answer
help me
•
By
lulzsecd
-
Published Question
My site have just install SSL but SSL not work. If I type latena.vn, the site accessible normally but I type https://latena.vn my site unaccessible and receive a error too many redirect
I run command nginx -t and rece...
4
•
•
By
lulzsecd
Nginx
Security
Ubuntu
-
Published Question
I can't run command apt-get update
I receive the following error
E: The method driver /usr/lib/apt/methods/https could not be found. N: Is the package apt-transport-https installed?
Please help me?
Thanks
1
•
•
By
lulzsecd
Linux Commands
Linux Basics
Ubuntu