joshuaavalon

Members
  • Posts

    46
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

joshuaavalon's Achievements

Rookie

Rookie (2/14)

0

Reputation

  1. But why would it work on 6.5? Also, do I have any way to test or check it?
  2. I update from 6.5.X to 6.7.0. The update is success. But I face some freeze from time to time. For example, 1. Connecting SSH in LAN and typing can freeze a few second once in a while. 2. Playing video file via network share also freeze a few once in a while. CPU and RAM load is < 10% and these problems did not happen before update. Does someone face similar issue?
  3. Is it possible to use this as a non-mirror server?
  4. I would like to ask if a named volume is create in Docker. Does it persist after unRaid reboot? If so, where is the volume located?
  5. I know how to get Docker compose. I am asking about this Docker created in command line do not have the XML files like you created from the Web UI. Is using restart: always will perform like turn on auto start? Will it wait unit the array mount and start?
  6. I know that unRaid mount the array before start docker and stop the docker before unmount the arrray. I want to move the docker manage to docker compose but how does it works with unRaid? Does the containers created by docker compose works the same way (Start and stop automatically)?
  7. As title. Very often the image is updated because of upstream image is updated. I do not want to see notifications keep popping up every day. Is it possible to disable the checking or at least the notification?
  8. I pretty sure I killed it. I use "pgrep -f name | xargs kill" to kill it. I also use "ps aux | grep name" to ensure it is killed. I tried to refresh the page but it does not remove it either.
  9. No, I mean I kill my script in terminal using kill <PID>. But the GUI still shows it is running unless I click abort script. Is there a way to stop it in command line?
  10. How can I kill a user script? I kill the script but it still show script running in web UI.
  11. This only happen you click add container. Update container is fine. Add container -> Add another Path, Port, Variable or Device -> Port However, when you try to update container. You can see the container port either you edit or add a port.
  12. Upgraded from 6.3.5 to 6.4. Server is rebooted. Top right is showing 6.4.0. But it still showing the old web UI. Do I need to turn on some setting?
  13. There can be only 1 default conf (server_name _). You can filter by server name and use * for wildcard. server { listen 443 ssl; server_name subdomain1.domain1.com; location / { proxy_pass http://192.168.1.2:8080; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; } } server { listen 443 ssl; server_name domain2.com *.domain2.com; location / { proxy_pass http://192.168.1.2:8080; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; } }