Search results

  1. Cold-Egg

    Error with listener 7080

    Hi, Let's encrypt probably not the issue. Better get the result next time with the following command so you can see which process occupied the admin port, netstat -antupl | grep 7080 Best
  2. Cold-Egg

    How to create virtual host without using webadmin ?

    Hi, Maybe this script can give you some idea, /bin/bash <( curl -sk https://raw.githubusercontent.com/litespeedtech/ls-cloud-image/master/Setup/vhsetup.sh ) -d www.example.com Feel free to download/use it.
  3. Cold-Egg

    OLS setup and config

    Hi, There's no existing CLI yet, so to set a new password for admin user from console, you can try this echo "admin:$(/usr/local/lsws/admin/fcgi-bin/admin_php -q /usr/local/lsws/admin/misc/htpasswd.php mypassword)" > /usr/local/lsws/admin/conf/htpasswd; and create a bash script for new...
  4. Cold-Egg

    Install mysql on existing openlitespeed server running on Ubuntu 18.04

    Hi, Install Mysql Service, you can check https://www.digitalocean.com/community/tutorials/how-to-install-mysql-on-ubuntu-18-04 Install lsphp, check this doc for both yum and apt methods, https://docs.litespeedtech.com/extapp/php/getting_started/ Best
  5. Cold-Egg

    Having trouble installing Symantec Encryption Everywhere SLL certificate from name.com on OpenLiteSpeed WordPress on DigitalOcean

    @wekesa Just FYI if you want to use Let's Encrypt some day, just follow https://docs.litespeedtech.com/cloud/images/wordpress/#step-3 to apply the cert from the prompt script.
  6. Cold-Egg

    Redirect to HTTPS WWW - How Do I Achieve it?

    If the connection start with www, then it won't mach "RewriteCond %{HTTP_HOST} !^www." and will skip "RewriteRule ^(.*)$ https://www.%{SERVER_NAME}/$1 [L,R=301]"
  7. Cold-Egg

    How to update php version from 7.3 to 7.4 with OLWS on Ubuntu 20.04?

    Hi, It should works on WordPress site, did you restart php yet? killall -9 lsphp PHP --version shows 7.3.17 is normal, because it has a softlink to lsphp73. Feel free to use follow command to link php74 ln -sfn /usr/local/lsws/lsphp74/bin/php /usr/bin/php Please keep php73 exist Best, Eric
  8. Cold-Egg

    OLS not starting

    Any more error shows if you run follow commands? /usr/local/lsws/bin/lswsctrl stop /usr/local/lsws/bin/lswsctrl start Any output from ps? ps axu | grep -i http
  9. Cold-Egg

    Accessing OLS using Docker image & DockStation on Windows

    Hi, I installed the docker desktop version on my windows NB and ran the openlitespeed-docker-env solution, all went well. Did not change anything yet. Please see below image that I can visit phpmyadmin (https://localhost:8443), also I can visit openlitespeed web admin (https://localhost:7080)...
  10. Cold-Egg

    CORS policy issues regarding fonts on AWS Cloudfront

    https://stackoverflow.com/questions/63873274/cors-policy-issues-regarding-fonts-on-aws-cloudfront OLS doesn't read .htaccess for Header directive, you need to use Context way openlitespeed.org/kb/how-to-set-up-custom-headers
  11. Cold-Egg

    Accessing OLS using Docker image & DockStation on Windows

    Hi, Are you using https://github.com/litespeedtech/ols-docker-env? I am not so sure about dockerstation, can you find any docker-machine ip from that docker tool? then you can try to visit https://docker-machine:7080 instead of localhost IP
  12. Cold-Egg

    Bug in server log viewer

    Thanks for your contribution. One of the developer will take a look maybe tomorrow. :)
  13. Cold-Egg

    Set "Trusted IP only" with config?

    Check if you can edit in Manual mode? If you scroll down the manual page, can you see accessControl{ allow ALL } If so, update it to accessControl { allow ALL, 103.21.244.0/22T, 103.22.200.0/22T, 103.31.4.0/22T, 104.16.0.0/12T...
  14. Cold-Egg

    How do I hide phpmyadmin?

    No problem, happy to help. By the way, we would appreciate if you can left us a the positive feedback on Google https://t.co/YhmP3MFl4f?amp=1 Thank you in advance :)
  15. Cold-Egg

    Suspend/resume virtual host in webadmin console does not work without manual lsws restart

    Here's the example log I saw when I clicking the suspend button from web admin tail -f /usr/local/lsws/logs/error.log 2020-09-10 01:49:12.117329 [NOTICE] [LocalWorker::workerExec] VHost:_AdminVHost suExec check uid 997 gid 33 setuidmode 2. 2020-09-10 01:49:12.117467 [INFO]...
  16. Cold-Egg

    Suspend/resume virtual host in webadmin console does not work without manual lsws restart

    Hi, I tried v1.6.15 no issue. Then upgrade to v1.7.4, tried it again, still no issue. No issue here means no need to restart web server. If you feel it's a bug and reproducible, please submit a ticket to bug@litespeedtech.com
  17. Cold-Egg

    Set "Trusted IP only" with config?

    Correct me if I am wrong, I guess the config was generated by aapanel so you can not write anything via OLS config. You might want to contact aapanel see if they have an option for user to whitelist IP on OLS config.
  18. Cold-Egg

    CNAME Cloudflare returns a 404 Not Found error.

    Like file not found? https://en.wikipedia.org/wiki/HTTP_404
  19. Cold-Egg

    How do I hide phpmyadmin?

    Hi, a2 commands is for apache only. Well, you can also update the openlitespeed config directly, or even a shell command to change it. But there's no existing script/module like a2disconf/a2enconf for OLS. Best, Eric
Top