beep

Members
  • Posts

    3
  • Joined

  • Last visited

Recent Profile Visitors

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

beep's Achievements

Noob

Noob (1/14)

1

Reputation

  1. Had it running for a week, no longer running and logs now showing after update: Error [ERR_REQUIRE_ESM]: Must use import to load ES Module: /usr/lib/node_modules/synclounge/node_modules/url-join/lib/url-join.js require() of ES modules is not supported. require() of /usr/lib/node_modules/synclounge/node_modules/url-join/lib/url-join.js from /usr/lib/node_modules/synclounge/node_modules/syncloungeserver/dist/socketserver/index.js is an ES module file as it is a .js file whose nearest parent package.json contains "type": "module" which defines all .js files in that package scope as ES modules. Instead rename url-join.js to end in .cjs, change the requiring code to use import(), or remove "type": "module" from /usr/lib/node_modules/synclounge/node_modules/url-join/package.json. at new NodeError (internal/errors.js:322:7) at Object.Module._extensions..js (internal/modules/cjs/loader.js:1102:13) at Module.load (internal/modules/cjs/loader.js:950:32) at Function.Module._load (internal/modules/cjs/loader.js:790:12) at Module.require (internal/modules/cjs/loader.js:974:19) at require (internal/modules/cjs/helpers.js:101:18) at Object.<anonymous> (/usr/lib/node_modules/synclounge/node_modules/syncloungeserver/dist/socketserver/index.js:15:39) at Module._compile (internal/modules/cjs/loader.js:1085:14) at Object.Module._extensions..js (internal/modules/cjs/loader.js:1114:10) at Module.load (internal/modules/cjs/loader.js:950:32) { code: 'ERR_REQUIRE_ESM' }
  2. Did you ever get this working over the internet? Edit, I too currently have the server(satisfactory) working locally, just cannot get it working with my subdomain and swag.
  3. I am trying this and am stumped on how to setup the subdomain.conf filesfor swag. Would it be possible for you to share your conf file? I understand it's rough. Edit, figured it out to get it working through subdomain...: #ptero server { listen 80; server_name panel.XXXXX.XXX; return 301 https://panel.XXXXX.XXX$request_uri; } server { listen 443 ssl http2; server_name panel.XXXXX.XXX; location / { include /config/nginx/proxy.conf; proxy_pass http://XX.X.X.X:8001; } } Edit2, I am am now having an issue getting node.XXX.XXX to be found I believe, when I run the daemon I am getting a CORS error. "CORS header ‘Access-Control-Allow-Origin’ missing) 502"