-
-
Notifications
You must be signed in to change notification settings - Fork 130
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ERROR: unsatisfiable constraints while do Docker build #26
Comments
we provide prebuilt images |
I know but I wanted to disable SSL and just let container listen on 80. |
the dockerfile worked at the last time the image was built, we built the image from the Dockerfile after all. alpine repositories often have updates etc and package dependencies change and sometimes those changes take time to propagate or need fixing by alpine. if you want to disable ssl then just edit the local copies of nginx.conf and the default file for nextcloud virtualhost. |
you hint with editing local conf files sounds great! I will give it a try. I tried it but ran into issues with accessing it ... |
Sorry for coming up with this issue again. `server { enforce httpsreturn 301 https://$server_name$request_uri;#} #server { listen 443 ssl;server_name _;ssl_certificate /config/keys/cert.crt;ssl_certificate_key /config/keys/cert.key;` This is create command: with 192.168.100.39:88 I am not able to reach it ... Any suggestion? |
If you try to connect on port 80 (88 from the lan/wan), nginx will redirect you to https, which is port 443. But your container is not available from the lan/wan at port 443, it is available at port 4438 |
try this instead |
Sorry I just recognized change of default config want displayed correctly:
#server { listen 443 ssl;server_name _;ssl_certificate /config/keys/cert.crt;ssl_certificate_key /config/keys/cert.key; |
I hate it! I make maybe a mistake pasting my code. hashtag is just making following line big ... So what I wanted to show you is (**=hashtag ) `server { **server { ** ssl_certificate /config/keys/cert.crt; ` so it should listen on 80 (88) and just continue with config file ... but it is not working |
You did not close the "server" tag with a |
the rest of default file is unchanged s the closing } originally used for server 443 part is still there btw many thanks for your help and patience |
Hello,
I copied github files and did build image
with
docker build -t nextcloud .
But I am receiving this error:
fetch http://nl.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz
fetch http://dl-cdn.alpinelinux.org/alpine/v3.5/main/x86_64/APKINDEX.tar.gz
fetch http://dl-cdn.alpinelinux.org/alpine/v3.5/community/x86_64/APKINDEX.tar.gz
ERROR: unsatisfiable constraints:
so:libcrypto.so.41 (missing):
required by:
php7-ftp-7.0.17-r5[so:libcrypto.so.41]
so:libssl.so.43 (missing):
required by:
php7-ftp-7.0.17-r5[so:libssl.so.43]
The text was updated successfully, but these errors were encountered: