Jump to content

rdubs

Members
  • Posts

    54
  • Joined

  • Last visited

Everything posted by rdubs

  1. Yah, I couldn't find any unraid dockers that are compiled with mono or any other way for me to run an aspx page though. I suppose I could make my own image, but that would be a lot of reading and exploring, I have no idea how lol.
  2. Ah, bummer! Ok, well I put a windows vm machine with IIS to host for now. How can I forward my ssl protocol to this webserver instead? My current nginx config looks like this server { listen 80; server_name _; return 301 https://$host$request_uri; } # main server block server { listen 443 ssl default_server; root /config/www; index index.html index.htm index.php; server_name _; ssl_certificate /config/keys/letsencrypt/fullchain.pem; ssl_certificate_key /config/keys/letsencrypt/privkey.pem; ssl_dhparam /config/nginx/dhparams.pem; etc I would want to bypass the nginx serving the pages now, but maintain the SSL encrpytion to the new vm host though Thanks!
  3. Hi, how can I run an aspx website with this docker? The fastcgi protocol is already enabled for php, so it should just be some config file changes right? I'm not sure if the fast cgi mono server is included in this docker? Thanks for any help!
  4. Ah ok thanks. Is the php.ini not exposed in this container for some reason? I also need the mysqli extension enabled if possible.
  5. Hi, I'm wondering how I can enable Bzip2 with this container? A lot of php tools require this functionality. (I'm not sure where the php.ini is stored for the docker environment?)Thanks!
×
×
  • Create New...