• 0 Posts
  • 9 Comments
Joined 3 years ago
cake
Cake day: August 7th, 2023

help-circle



  • Just FYI cyberpunk works perfectly fine on Linux.

    I understand the piracy, I’m not advocating it but I understand. But if you have the funds, and the company is worth getting your money why don’t you just get out of all the trouble of finding how to play it and just buy it and play it without any issue?

    With that said, lutris and/or bottle (or any other recent launcher to play video games on linux) will actually do the trick. If for some reason you are unable to find the how to somewhere I wonder if you should really be downloading executables off the internet. Even more so on windows if you are not using Linux anymore for ever.

    Those are usually the vector of a lots of viruses and malwares.

    Anyway. Have fun with cyberpunk, it’s pretty great!.. When you can launch it :-)


  • For printer it works out of the box you dont need any app.

    For the MSI thingy… Well there is multiple apps that can do that but truthfully you don’t need to tweak as much as you do on windows, and if you do you’ll find plethora of apps to help you achieve what you want


  • OK you are thinking at it the wrong way : 80 and 443 are the default ports for the web access of any web application.

    You are using docker with the nextcloud aio image. Which mean, you are deploying a docker container which contain the web application.

    What you are doing is using arbitrary ports for the container. This could be 7777. Then, this is redirected to 443 inside the container, to the web application.

    This is why you can actually use any port you want for your container. You are not really switching the port for nextcloud, only for the container.

    This is why I suggested doing 444:443 in the docker-compose.yml file: you are exposing 444 to the container, to 443 inside the container.

    And this is why you can actually use any ports for every web app you are going to host : apache will redirect to the port you want to the container, a’d docker will redirect inside the container to either 80 or 443 (or anything else needed for that web application).


  • In fact 80 and 443 refer to http and https, those are default ports.

    You can in fact use the ports you want for the service you want. I have multiple web services behind the ports 80 and 443, you need one service that is able to get the request at the correct port. This is the role of the reverse proxy.

    Apache can assume that role, you go to anything.yourdomain.com and apache will then redirect “anything” to the correct service (with the internal ip and port). So say you want to put nextcloud at 7777 you can tell docker to expose 7777 and redirect it to 443 on nextcloud.

    The chain is like that in the case : nextcloud.yourdomain.com > apache > nextcloud is at ip:7777 > redirect the request to 7777 > nextcloud homepage is shown